aboutsummaryrefslogtreecommitdiff
path: root/AudioTester/AudioTester.csproj
blob: fc07b92bc32d0ac38a2b750224979d86f2ac034a (plain)
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
<Project Sdk="Microsoft.NET.Sdk">

  <PropertyGroup>
    <OutputType>Exe</OutputType>
    <TargetFramework>net6.0</TargetFramework>
    <ImplicitUsings>enable</ImplicitUsings>
    <Nullable>enable</Nullable>
  </PropertyGroup>

  <ItemGroup>
    <PackageReference Include="NAudio" Version="2.2.1" />
    <PackageReference Include="System.Drawing.Common" Version="7.0.0" />
  </ItemGroup>
  <ItemGroup>
	<Content Include="Resources\*">
	  <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
	</Content>
  </ItemGroup>
  <ItemGroup>
    <None Remove="Resources\test.wav" />
  </ItemGroup>
  <ItemGroup>
    <ProjectReference Include="..\RayRoom\RayRoom.csproj" />
  </ItemGroup>
</Project>