-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathOpenVoiceSharp.csproj
47 lines (43 loc) · 1.83 KB
/
OpenVoiceSharp.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
37
38
39
40
41
42
43
44
45
46
47
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.1;net6.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Title>OpenVoiceSharp</Title>
<Authors>realcoloride</Authors>
<Description>OpenVoiceSharp - Agnostic C# VoIP/Voice Chat Library using Opus.</Description>
<PackageIcon>openvoicesharp.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/realcoloride/OpenVoiceSharp</RepositoryUrl>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<PackageProjectUrl>https://github.com/realcoloride/OpenVoiceSharp</PackageProjectUrl>
<PackageTags>voice; vc; voice-chat; voip; voicechat; audiostreaming; audio; realtime</PackageTags>
<PackageReleaseNotes>Changed copying via array in circular buffer for optimization</PackageReleaseNotes>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<Version>1.0.3</Version>
<LangVersion>11.0</LangVersion>
<IncludeSymbols>False</IncludeSymbols>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="NAudio" Version="2.2.1" />
<PackageReference Include="OpusDotNet" Version="1.0.3" />
<PackageReference Include="System.Memory" Version="4.5.5" />
<PackageReference Include="WebRtcVadSharp" Version="1.3.2" />
<PackageReference Include="YellowDogMan.RRNoise.NET" Version="0.1.6" />
</ItemGroup>
<ItemGroup>
<None Include="LICENSE">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="openvoicesharp.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>