forked from overtools/revorbstd
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRevorbStd.csproj
More file actions
23 lines (23 loc) · 782 Bytes
/
RevorbStd.csproj
File metadata and controls
23 lines (23 loc) · 782 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Library</OutputType>
<LangVersion>latest</LangVersion>
<PlatformTarget>x64</PlatformTarget>
<TargetFramework>net5.0</TargetFramework>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Version>1.0.0.0</Version>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<FileVersion>1.0.0.0</FileVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="lz4net" Version="1.0.15.93" />
</ItemGroup>
<ItemGroup>
<None Update="librevorb.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="librevorb.so">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>