-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSharedModels.csproj
More file actions
41 lines (36 loc) · 2 KB
/
Copy pathSharedModels.csproj
File metadata and controls
41 lines (36 loc) · 2 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<Authors>John Cook</Authors>
<Version>0.2.0</Version>
<AssemblyVersion>0.2.0.0</AssemblyVersion>
<FileVersion>0.2.0.0</FileVersion>
<Copyright>Copyright © John Cook 2020</Copyright>
<Platforms>AnyCPU;x64;x86</Platforms>
<RuntimeIdentifiers>win-x64;win-x86</RuntimeIdentifiers>
<RootNamespace>uk.JohnCook.dotnet.SharedModels</RootNamespace>
<NeutralLanguage>en-GB</NeutralLanguage>
<Description>This library is for classes that are used by other projects/libraries and will eventually be for classes that aren't dependent on other projects and are used across projects.</Description>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageReleaseNotes>Version bump of SharedModels. Minor version changes may 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" />
</ItemGroup>
<ItemGroup>
<None Include="..\LICENSE">
<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>