diff options
author | bonmas14 <bonmas14@gmail.com> | 2023-10-24 20:59:19 +0300 |
---|---|---|
committer | bonmas14 <bonmas14@gmail.com> | 2023-10-24 20:59:19 +0300 |
commit | bb22f05857bf5358343de294e98a655370e327aa (patch) | |
tree | 482f7f193105619006fb552616224ec1712908b3 /AudioTester/AudioTester.csproj | |
parent | aad3d0382c498f6a39e5dbf5c9682e18127df353 (diff) | |
download | RayRoom-bb22f05857bf5358343de294e98a655370e327aa.tar.gz RayRoom-bb22f05857bf5358343de294e98a655370e327aa.zip |
- raycasting
- System.Drawing visualization
- some tests
Diffstat (limited to 'AudioTester/AudioTester.csproj')
-rw-r--r-- | AudioTester/AudioTester.csproj | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/AudioTester/AudioTester.csproj b/AudioTester/AudioTester.csproj new file mode 100644 index 0000000..fc07b92 --- /dev/null +++ b/AudioTester/AudioTester.csproj @@ -0,0 +1,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> |