-
Notifications
You must be signed in to change notification settings - Fork 269
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
30 lines (28 loc) · 1.31 KB
/
Directory.Build.props
File metadata and controls
30 lines (28 loc) · 1.31 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
<Project>
<PropertyGroup>
<TargetFrameworks>net8.0;net9.0;net10.0</TargetFrameworks>
<LangVersion>latest</LangVersion>
<AnalysisMode>AllEnabledByDefault</AnalysisMode>
<Configurations>Debug;Release</Configurations>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<!--<TreatWarningsAsErrors>true</TreatWarningsAsErrors>-->
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Debug'">
<DefineConstants>DEBUG</DefineConstants>
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup>
<Version>0.0.0</Version>
<Product>Minio SDK for .NET</Product>
<Company>Minio</Company>
<Copyright>Copyright 2023-$([System.DateTime]::Now.ToString(yyyy)) Minio</Copyright>
<Configuration>Release build</Configuration>
<Configuration Condition=" '$(Configuration)' == 'Debug' ">Debug build (INTERNAL USE ONLY)</Configuration>
<PackageProjectUrl>https://github.com/minio/minio-dotnet</PackageProjectUrl>
<RepositoryUrl>https://github.com/minio/minio-dotnet</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<ContinuousIntegrationBuild Condition="'$(GITHUB_ACTIONS)' == 'true'">true</ContinuousIntegrationBuild>
</PropertyGroup>
</Project>