-
Notifications
You must be signed in to change notification settings - Fork 0
/
NetPro.Utility.csproj
49 lines (43 loc) · 2.08 KB
/
NetPro.Utility.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>$(NetStandardTargetVersion)</TargetFramework>
<Version>$(NetProUtility)</Version>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Authors>$(Authors)</Authors>
<Description>
</Description>
<PackageProjectUrl>$(PackageProjectUrl)</PackageProjectUrl>
<PackageIcon>$(PackageIcon)</PackageIcon>
<AssemblyName>$(NetProUtilityAssemblyName)</AssemblyName>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DocumentationFile>bin\Debug\netcoreapp3.1\NetPro.Utility.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DocumentationFile>bin\Release\netcoreapp3.1\NetPro.Utility.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.Utility.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Helpers\AppSetting.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="DotNetCore.NPOI" Version="$(DotNetCoreNPOI)" />
<PackageReference Include="IdGen" Version="3.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Http.Features" Version="3.1.8" />
<PackageReference Include="Newtonsoft.Json" Version="$(NewtonsoftJson)" />
<PackageReference Include="PinYinConverterCore" Version="$(PinYinConverterCore)" />
<PackageReference Include="System.ComponentModel.Annotations" Version="$(SystemComponentModelAnnotations)" />
<PackageReference Include="TimeZoneConverter" Version="$(TimeZoneConverter)" />
</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>