forked from nhibernate/nhibernate-core
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathNHibernate.csproj
More file actions
72 lines (62 loc) · 2.59 KB
/
Copy pathNHibernate.csproj
File metadata and controls
72 lines (62 loc) · 2.59 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="../../build-common/NHibernate.props" />
<PropertyGroup>
<Description>An object persistence library for relational databases.</Description>
<TargetFramework>net461</TargetFramework>
<NoWarn>$(NoWarn);3001;3002;3003;3005;1591</NoWarn>
<SignAssembly>True</SignAssembly>
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
<AssemblyOriginatorKeyFile>..\NHibernate.snk</AssemblyOriginatorKeyFile>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PackageDescription>NHibernate is a mature, open source object-relational mapper for the .NET framework. It is actively developed, fully featured and used in thousands of successful projects.</PackageDescription>
<PackageTags>ORM; O/RM; DataBase; DAL; ObjectRelationalMapping; NHibernate; ADO.Net; Core</PackageTags>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
<TreatSpecificWarningsAsErrors />
</PropertyGroup>
<ItemGroup>
<None Remove="**\*.g" />
<None Remove="**\*.xsd" />
</ItemGroup>
<ItemGroup>
<Antlr3 Include="**\*.g" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="**\*.xsd" />
</ItemGroup>
<ItemGroup>
<None Include="..\NHibernate.snk" Link="NHibernate.snk" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Antlr3.CodeGenerator" Version="3.5.2-beta1">
<PrivateAssets>All</PrivateAssets>
</PackageReference>
<PackageReference Include="Antlr3.Runtime" Version="[3.5.1, 4.0)" />
<PackageReference Include="Iesi.Collections" Version="[4.0.2, 5.0)" />
<PackageReference Include="Remotion.Linq" Version="[2.1.2, 3.0)" />
<PackageReference Include="Remotion.Linq.EagerFetching" Version="[2.1.0, 3.0)" />
</ItemGroup>
<ItemGroup>
<Reference Include="System.ServiceModel" />
<Reference Include="System.Transactions" />
<Reference Include="System.Configuration" />
</ItemGroup>
<ItemGroup>
<Content Include="*.xsd">
<PackagePath>./</PackagePath>
</Content>
<Content Include="../NHibernate.Config.Templates/*">
<PackagePath>./ConfigurationTemplates/</PackagePath>
</Content>
<Content Include="../../releasenotes.txt">
<PackagePath>./NHibernate.releasenotes.txt</PackagePath>
</Content>
<Content Include="../../README.md">
<PackagePath>./NHibernate.readme.md</PackagePath>
</Content>
<Content Include="../../LICENSE.txt">
<PackagePath>./NHibernate.license.txt</PackagePath>
</Content>
</ItemGroup>
</Project>