20 lines
695 B
XML
20 lines
695 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<PublishAot>true</PublishAot>
|
|
<InvariantGlobalization>true</InvariantGlobalization>
|
|
<SelfContained>true</SelfContained>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Hush.Config\Hush.Config.csproj" />
|
|
<ProjectReference Include="..\Hush.Audio\Hush.Audio.csproj" />
|
|
<ProjectReference Include="..\Hush.Providers\Hush.Providers.csproj" />
|
|
<ProjectReference Include="..\Hush.Input\Hush.Input.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|