-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDirectory.Build.props
27 lines (24 loc) · 982 Bytes
/
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
<Project>
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net48;net6.0;</TargetFrameworks>
<Authors>Raul Otaño Hurtado</Authors>
<Company>rulyotano</Company>
<LangVersion>10</LangVersion>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryUrl>https://github.com/rulyotano/Rulyotano.CrossCutting</RepositoryUrl>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<RepositoryType>Github</RepositoryType>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<GenerateDocumentationFile>false</GenerateDocumentationFile>
</PropertyGroup>
<PropertyGroup>
<IsPackable>true</IsPackable>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="SonarAnalyzer.CSharp" Version="8.35.0.42613" PrivateAssets="all" />
</ItemGroup>
<ItemGroup>
<Compile Include="$(MSBuildThisFileDirectory)GlobalSuppresions.cs" />
</ItemGroup>
</Project>