-
Notifications
You must be signed in to change notification settings - Fork 1
/
VIEApps.Components.Repository.csproj
65 lines (58 loc) · 3.21 KB
/
VIEApps.Components.Repository.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net9.0;netstandard2.0</TargetFrameworks>
<WarningLevel>3</WarningLevel>
<NoWarn>IDE0054,IDE0056,IDE0057,IDE0063,IDE0066,IDE0074,IDE0090,CA1068,CA1507,1573,1591</NoWarn>
<RootNamespace>net.vieapps.Components.Repository</RootNamespace>
<DocumentationFile>bin/$(Configuration)/$(TargetFramework)/VIEApps.Components.Repository.xml</DocumentationFile>
<AssemblyName>VIEApps.Components.Repository</AssemblyName>
<AssemblyTitle>VIEApps NGX Repository</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 Repository</Title>
<Description>A tiny polyglot component to help POCO objects work with both NoSQL and SQL databases at the same time on .NET</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.Repository$(PackageSuffix)</PackageId>
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageIcon>Icon.png</PackageIcon>
<PackageOutputPath>../</PackageOutputPath>
<PackageTags>polyglot;repository;orm;activerecord;database;sql;nosql;vieapps;vieapps.components</PackageTags>
<PackageReleaseNotes>Add supported .NET 9</PackageReleaseNotes>
<PackageProjectUrl>https://vieapps.net</PackageProjectUrl>
<RepositoryUrl>https://github.com/vieapps/Components.Repository</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>
<PackageReference Include="MongoDB.Driver" Version="3.1.0" />
</ItemGroup>
<ItemGroup Condition="'$(GeneratePackage)' != 'true'">
<PackageReference Include="VIEApps.Components.Caching" Version="10.9.2412.1" />
<PackageReference Include="VIEApps.Components.Security" Version="10.9.2412.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)" />
</ItemGroup>
</Project>