-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
42 lines (38 loc) · 1.85 KB
/
Directory.Build.props
File metadata and controls
42 lines (38 loc) · 1.85 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
<Project>
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AnalysisLevel>latest</AnalysisLevel>
<AnalysisMode>All</AnalysisMode>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>$(NoWarn);1591;NU1701</NoWarn>
<CodeAnalysisTreatWarningsAsErrors>true</CodeAnalysisTreatWarningsAsErrors>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<Authors>Christian Arensbak</Authors>
<RepositoryUrl>https://github.com/carensbak/floe</RepositoryUrl>
<Description>A dotnet tool that simplifies the Git Flow branching strategy.</Description>
<PackAsTool>true</PackAsTool>
<ToolCommandName>floe</ToolCommandName>
</PropertyGroup>
<ItemGroup Condition="'$(MSBuildProjectExtension)' != '.dcproj'">
<PackageReference Include="SonarAnalyzer.CSharp">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<InternalsVisibleTo Include="Floe.Cli.IntegrationTests" />
<InternalsVisibleTo Include="$(AssemblyName).Tests" />
</ItemGroup>
<ItemGroup Condition="$(MSBuildProjectDirectory.Contains('Tests'))">
<PackageReference Include="Microsoft.NET.Test.Sdk" />
<PackageReference Include="xunit.v3" />
<PackageReference Include="Shouldly" />
<PackageReference Include="xunit.runner.visualstudio" />
<Using Include="Xunit" />
<Using Include="Shouldly" />
</ItemGroup>
<PropertyGroup Condition="$(MSBuildProjectDirectory.Contains('Tests'))">
<IsPackable>false</IsPackable>
</PropertyGroup>
</Project>