-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathProjectCommon.targets
37 lines (36 loc) · 1.47 KB
/
ProjectCommon.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
34
35
36
37
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<TargetFrameworks>net6.0;netstandard2.1;netstandard2.0;net461</TargetFrameworks>
<IsPackable>true</IsPackable>
<VersionSuffix>$(VersionSuffix)</VersionSuffix>
<Version>0.0.4.7</Version>
<AssemblyVersion>$(Version)</AssemblyVersion>
<FileVersion>$(Version)</FileVersion>
<Version Condition=" '$(VersionSuffix)' != '' ">$(Version)-$(VersionSuffix)</Version>
<!--Common information-->
<Authors>Victor.X.Qu</Authors>
<Company>Norns.Urd</Company>
<Copyright>@2020 Norns.Urd</Copyright>
<PackageTags>Emit;Aop</PackageTags>
<Description>See - https://github.com/fs7744/Norns.Urd </Description>
<RepositoryUrl>https://github.com/fs7744/Norns.Urd</RepositoryUrl>
<PackageIcon>icon.png</PackageIcon>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<GeneratePackageOnBuild>False</GeneratePackageOnBuild>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\images\icon.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="SecurityCodeScan" Version="3.5.4" PrivateAssets="all" />
</ItemGroup>
</Project>