blob: 5549d830413f8f64ecfc8cb4495755542e6b7d20 (
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" />
</ItemGroup>
<ItemGroup>
<Content Include="Resources\*">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<None Remove="Resources\test.wav" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\RayRoom.NAudio\RayRoom.NAudioEngine.csproj" />
<ProjectReference Include="..\RayRoom\RayRoom.csproj" />
</ItemGroup>
</Project>
|