-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
32 lines (29 loc) · 1.21 KB
/
Directory.Build.props
File metadata and controls
32 lines (29 loc) · 1.21 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
<Project>
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Version>0.3.2</Version>
<Authors>ResQ Team</Authors>
<Company>ResQ Software</Company>
<Copyright>Copyright (c) 2026 ResQ</Copyright>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageReadmeFile>NUGET_README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/resq-software/dotnet-sdk</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<!-- S-Tier .NET DX -->
<AccelerateBuildsInVisualStudio>true</AccelerateBuildsInVisualStudio>
<ProduceReferenceAssembly>true</ProduceReferenceAssembly>
<NuGetAudit>true</NuGetAudit>
<NuGetAuditLevel>moderate</NuGetAuditLevel>
</PropertyGroup>
<!-- Global Analysis Settings -->
<PropertyGroup>
<AnalysisLevel>latest</AnalysisLevel>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
</PropertyGroup>
<ItemGroup Condition="'$(IsPackable)' == 'true'">
<None Include="$(MSBuildThisFileDirectory)NUGET_README.md" Pack="true" PackagePath="\" Visible="false" />
</ItemGroup>
</Project>