-
Notifications
You must be signed in to change notification settings - Fork 12
/
Project.Build.Properties.props
52 lines (40 loc) · 2.01 KB
/
Project.Build.Properties.props
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
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<!--
PROPERTIES
-->
<PropertyGroup>
<WinExeTargetFrameworks>net9.0-windows</WinExeTargetFrameworks>
<WinExeTestTargetFrameworks>net9.0-windows</WinExeTestTargetFrameworks>
<WinLibTargetFrameworks>net9.0-windows;net48</WinLibTargetFrameworks>
<ExeTargetFrameworks>net9.0</ExeTargetFrameworks>
<ExeTestTargetFrameworks>net9.0;net8.0;net48</ExeTestTargetFrameworks>
<LibTargetFrameworks>net9.0;net8.0;net48</LibTargetFrameworks>
<LangVersion>latest</LangVersion>
<!--
CA2252: Opt in to preview features before using them
https://learn.microsoft.com/en-us/dotnet/fundamentals/code-analysis/quality-rules/ca2252
-->
<EnablePreviewFeatures>true</EnablePreviewFeatures>
</PropertyGroup>
<PropertyGroup>
<ReportAnalyzer>true</ReportAnalyzer>
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup>
<AssemblyOriginatorKeyFileName>CastleKey.snk</AssemblyOriginatorKeyFileName>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/mahara/Castle.Facilities.NHibernateIntegration</RepositoryUrl>
</PropertyGroup>
<PropertyGroup>
<Product>Castle.Facilities.NHibernateIntegration</Product>
<Authors>Castle Project Contributors</Authors>
<CurrentYear>$([System.DateTime]::Now.ToString("yyyy"))</CurrentYear>
<Copyright>Copyright (c) 2004-$(CurrentYear) Castle Project - https://www.castleproject.org/</Copyright>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/mahara/Castle.Facilities.NHibernateIntegration</PackageProjectUrl>
<PackageIcon>castle_facilities_nhibernateintegration-logo.png</PackageIcon>
</PropertyGroup>
<ItemGroup>
<Content Include="$(WorkspaceFolderPath)docs\images\castle_facilities_nhibernateintegration-logo.png" Link="Properties\castle_facilities_nhibernateintegration-logo.png" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>