-
Notifications
You must be signed in to change notification settings - Fork 0
/
NAudioWrapperLibrary.csproj
55 lines (48 loc) · 2.4 KB
/
NAudioWrapperLibrary.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
48
49
50
51
52
53
54
55
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<AssemblyVersion>0.3.0.0</AssemblyVersion>
<FileVersion>0.3.0.0</FileVersion>
<Version>0.3.0</Version>
<Authors>John Cook</Authors>
<Copyright>Copyright © John Cook 2020</Copyright>
<Platforms>AnyCPU;x64;x86</Platforms>
<RuntimeIdentifiers>win-x64;win-x86</RuntimeIdentifiers>
<RootNamespace>uk.JohnCook.dotnet.NAudioWrapperLibrary</RootNamespace>
<NeutralLanguage>en-GB</NeutralLanguage>
<Description>The purpose of this library is to interface with the Windows audio devices via the NAudio library.</Description>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageReleaseNotes>Version bump of NAudioWrapperLibrary. Nowhere near stable yet - minor version changes almost certainly have breaking changes.</PackageReleaseNotes>
<RepositoryUrl>https://github.com/watfordjc/csharp-stream-controller</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageProjectUrl>https://github.com/watfordjc/csharp-stream-controller</PackageProjectUrl>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="3.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="NAudio" Version="1.10.0" />
<PackageReference Include="System.Configuration.ConfigurationManager" Version="4.7.0" />
<PackageReference Include="System.Management" Version="4.7.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\SharedModels\SharedModels.csproj" />
</ItemGroup>
<ItemGroup>
<Folder Include="lib\Assets\" />
</ItemGroup>
<ItemGroup>
<None Include="..\LICENSE">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
<None Include="..\README.md">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="if "$(ConfigurationName)" == "Release" (
"C:\Program Files (x86)\Windows Kits\10\bin\10.0.19041.0\x86\signtool.exe" sign /tr http://timestamp.comodoca.com/rfc3161 /td sha256 /fd sha256 /n "$(Company)" "$(TargetDir)$(TargetFileName)"
)" />
</Target>
</Project>