-
Notifications
You must be signed in to change notification settings - Fork 0
/
VIEApps.Components.Utility.AspNetCore.csproj
78 lines (69 loc) · 3.86 KB
/
VIEApps.Components.Utility.AspNetCore.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net9.0;netstandard2.0</TargetFrameworks>
<WarningLevel>3</WarningLevel>
<NoWarn>1573,1591</NoWarn>
<DocumentationFile>bin/$(Configuration)/$(TargetFramework)/VIEApps.Components.Utility.AspNetCore.xml</DocumentationFile>
<RootNamespace>net.vieapps.Components.Utility</RootNamespace>
<AssemblyName>VIEApps.Components.Utility.AspNetCore</AssemblyName>
<AssemblyTitle>VIEApps NGX Utility</AssemblyTitle>
<AssemblyVersion>10.9$(ReleaseVersion)</AssemblyVersion>
<FileVersion>10.9$(ReleaseVersion)</FileVersion>
<InformationalVersion>10.9.$([System.DateTime]::Now.Year).$([System.DateTime]::Now.Month).$([System.DateTime]::Now.Day)@$(TargetFramework)#sn:$(Sign)#$(ReleaseRevision)</InformationalVersion>
<Version>10.9$(ReleaseVersion)$(ReleaseSuffix)</Version>
<Product>VIEApps NGX</Product>
<Title>VIEApps NGX Utility for ASP.NET Core</Title>
<Description>The general purpose components for developing apps with ASP.NET Core</Description>
<Copyright>© $([System.DateTime]::Now.Year) VIEApps.net</Copyright>
<Authors>VIEApps.net</Authors>
<Company>VIEApps.net</Company>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
<SignAssembly>$(Sign)</SignAssembly>
<AssemblyOriginatorKeyFile>../VIEApps.Components.snk</AssemblyOriginatorKeyFile>
<DefineConstants>$(SignConstant)</DefineConstants>
<GeneratePackageOnBuild>$(GeneratePackage)</GeneratePackageOnBuild>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PackageId>VIEApps.Components.Utility.AspNetCore$(PackageSuffix)</PackageId>
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageIcon>Icon.png</PackageIcon>
<PackageOutputPath>../</PackageOutputPath>
<PackageTags>utility;aspnetcore;vieapps;vieapps.components</PackageTags>
<PackageReleaseNotes>Add supported of .NET 9</PackageReleaseNotes>
<PackageProjectUrl>https://vieapps.net</PackageProjectUrl>
<RepositoryUrl>https://github.com/vieapps/Components.Utility.AspNetCore</RepositoryUrl>
<RepositoryType>git</RepositoryType>
</PropertyGroup>
<ItemGroup>
<None Remove=".DS_Store" />
<None Remove=".gitattributes" />
<None Remove=".gitignore" />
<None Visible="false" Include="README.md" Pack="true" PackagePath="\" />
<None Visible="false" Include="LICENSE.md" Pack="true" PackagePath="\" />
<None Visible="false" Include="Icon.png" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' != 'netstandard2.0'">
<FrameworkReference Include="Microsoft.AspNetCore.App" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
<PackageReference Include="Microsoft.AspNetCore.Authentication" Version="2.2.0" />
<PackageReference Include="Microsoft.AspNetCore.Diagnostics" Version="2.2.0" />
<PackageReference Include="Microsoft.AspNetCore.Http" Version="2.2.2" />
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="2.2.0" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="9.0.0" />
</ItemGroup>
<ItemGroup Condition="'$(GeneratePackage)' != 'true'">
<PackageReference Include="VIEApps.Components.Caching" Version="10.9.2501.1" />
<PackageReference Include="VIEApps.Components.Security" Version="10.9.2501.1" />
<PackageReference Include="VIEApps.Components.WebSockets" Version="10.9.2501.1" />
</ItemGroup>
<ItemGroup Condition="'$(GeneratePackage)' == 'true'">
<PackageReference Include="VIEApps.Components.Caching$(PackageSuffix)" Version="10.9$(ReleaseVersion)" />
<PackageReference Include="VIEApps.Components.Security$(PackageSuffix)" Version="10.9$(ReleaseVersion)" />
<PackageReference Include="VIEApps.Components.WebSockets$(PackageSuffix)" Version="10.9$(ReleaseVersion)" />
</ItemGroup>
</Project>