generated from AlekseyMartynov/ad-hoc-util
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Project.csproj
36 lines (32 loc) · 1.51 KB
/
Project.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8</TargetFramework>
<RootNamespace>Project</RootNamespace>
<ApplicationIcon>Icon.ico</ApplicationIcon>
<AssemblyName>Shazam</AssemblyName>
<StartupObject>Project.Program</StartupObject>
<DefineConstants>$(DefineConstants);NO_WASAPI_CAPTURE</DefineConstants>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
<PublishAot>true</PublishAot>
<DebuggerSupport>false</DebuggerSupport>
<InvariantGlobalization>true</InvariantGlobalization>
<UseSystemResourceKeys>true</UseSystemResourceKeys>
<IlcDisableReflection>true</IlcDisableReflection>
<TargetName>$(AssemblyName).$(RuntimeIdentifier)</TargetName>
<StripSymbols>true</StripSymbols>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Crc32.NET" Version="1.2.0" />
<PackageReference Include="MathNet.Numerics" Version="5.0.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.0" />
<PackageReference Include="NAudio.Core" Version="2.2.1" />
<PackageReference Include="NAudio.Wasapi" Version="2.2.1" />
<PackageReference Include="NLayer.NAudioSupport" Version="1.4.0" />
<PackageReference Include="System.Drawing.Common" Version="8.0.1" />
<PackageReference Include="xunit" Version="2.9.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2" />
</ItemGroup>
</Project>