-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDirectory.Build.props
57 lines (46 loc) · 2.17 KB
/
Directory.Build.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
53
54
55
56
57
<Project>
<PropertyGroup>
<!-- ============================================================================ -->
<!-- build info-->
<!-- ============================================================================ -->
<!-- Set the target framework for all projects -->
<TargetFramework>net8.0</TargetFramework>
<!-- Set the configuration to Debug by default -->
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<!-- Enable nullable reference types -->
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<!-- Treat all warnings as errors -->
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<!-- ============================================================================ -->
<!-- packaging info -->
<!-- ============================================================================ -->
<Version>2.4.0</Version>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<EnablePackageValidation>true</EnablePackageValidation>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageTags>syrx;data access;orm;micro-orm</PackageTags>
<PackageReleaseNotes>Last release on .NET8.0 exclusively. Next release will include .NET9.0.</PackageReleaseNotes>
<!-- ============================================================================ -->
<!-- organization info -->
<!-- ============================================================================ -->
<Company>Syrx</Company>
<Product>Syrx</Product>
<Copyright>https://github.com/Syrx/</Copyright>
<PackageProjectUrl>https://github.com/Syrx/</PackageProjectUrl>
<RepositoryUrl>https://github.com/Syrx/</RepositoryUrl>
<!-- ============================================================================ -->
</PropertyGroup>
<ItemGroup>
<PackageReference Include="DotNet.ReproducibleBuilds" Version="1.2.25">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<None Include="..\..\readme.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>