forked from jeikabu/nng.NETCore
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcommon.targets
33 lines (29 loc) · 1.35 KB
/
common.targets
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
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<TargetFrameworks>net462;netstandard2.0;net6.0;net8.0</TargetFrameworks>
<RootNamespace>nng</RootNamespace>
<MSBuildTreatWarningsAsErrors>true</MSBuildTreatWarningsAsErrors>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<WarningsAsErrors />
</PropertyGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'net462' ">
<PackageReference Include="System.Runtime.InteropServices.RuntimeInformation" Version="4.3.0" />
</ItemGroup>
<ItemGroup>
<None Include="..\LICENSE.txt" Pack="true" PackagePath="licenses"/>
<None Include="..\README.md" Pack="true" PackagePath="$(PackageReadmeFile)"/>
</ItemGroup>
<PropertyGroup>
<VersionPrefix>1.6.1</VersionPrefix>
<VersionSuffix></VersionSuffix>
<Authors>Jeikabu</Authors>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<Owners>Jeikabu</Owners>
<PackageProjectUrl>https://github.com/rodrigo455/nng.NETCore</PackageProjectUrl>
<Summary>.NET Core bindings to nng</Summary>
<PackageTags>nanomsg nng csnng</PackageTags>
<Description>.NET Core bindings to nng (https://github.com/nanomsg/nng)</Description>
<RepositoryUrl>https://github.com/rodrigo455/nng.NETCore</RepositoryUrl>
</PropertyGroup>
</Project>