-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
57 lines (54 loc) · 2.86 KB
/
Directory.Build.props
File metadata and controls
57 lines (54 loc) · 2.86 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
<Project>
<PropertyGroup>
<!-- ============================================================================ -->
<!-- build info-->
<!-- ============================================================================ -->
<!-- Set the target frameworks for all projects -->
<TargetFrameworks>net10.0</TargetFrameworks>
<!-- 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>3.0.0</Version>
<!-- Keep package generation opt-in for explicit pack/publish contexts only. -->
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<EnablePackageValidation>true</EnablePackageValidation>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageTags>syrx;data access;orm;micro-orm</PackageTags>
<PackageReleaseNotes>Version 3.0.0 - .NET 10.0 Exclusive Release
Breaking Changes:
- Updated to .NET 10.0 exclusively (dropped support for .NET 8.0 and .NET 9.0)
Known Issues:
- xunit.analyzers 1.26.0 bug workaround applied (MemberDataShouldReferenceValidMember analyzer disabled via Directory.Build.props)</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="2.0.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
</ItemGroup>
<!-- Globally exclude xunit.analyzers from all projects to work around bug in version 1.26.0 -->
<!-- Bug: MemberDataShouldReferenceValidMember analyzer throws InvalidOperationException -->
<!-- This applies to all projects that reference xunit (directly or transitively) -->
<ItemGroup>
<PackageReference Update="xunit.analyzers">
<PrivateAssets>all</PrivateAssets>
<ExcludeAssets>all</ExcludeAssets>
</PackageReference>
</ItemGroup>
</Project>