-
Notifications
You must be signed in to change notification settings - Fork 1
/
NetPro.Sign.csproj
44 lines (38 loc) · 1.69 KB
/
NetPro.Sign.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>$(NetCoreTargetVersion)</TargetFramework>
<Version>$(NetProSign)</Version>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Authors>$(Authors)</Authors>
<Description>
</Description>
<PackageProjectUrl>$(PackageProjectUrl)</PackageProjectUrl>
<PackageIcon>$(PackageIcon)</PackageIcon>
<AssemblyName>$(NetProSignAssemblyName)</AssemblyName>
<WarningLevel>3</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DocumentationFile>bin\Debug\netcoreapp3.1\NetPro.Sign.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DocumentationFile>bin\Release\netcoreapp3.1\NetPro.Sign.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<None Include="$(PackageIconPath)">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DocumentationFile>bin\Release\netstandard2.0\NetPro.Sign.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup Condition="'$(TargetFramework)' == '$(NetCoreTargetVersion)'">
<FrameworkReference Include="Microsoft.AspNetCore.App" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\NetPro.ShareRequestData\NetPro.ShareRequestBody.csproj" />
</ItemGroup>
<Target Name="CopyPackage" AfterTargets="Pack" Condition="'$(OS)' == 'Windows_NT' and Exists('$(SolutionDir)\PushNuget') and '$(Configuration)' == 'Release'">
<Copy SourceFiles="$(ProjectDir)\bin\Release\$(PackageId).$(PackageVersion).nupkg" DestinationFolder="$(SolutionDir)\PushNuget" />
</Target>
</Project>