-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDirectory.Build.props
35 lines (29 loc) · 1.03 KB
/
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
28
29
30
31
32
33
34
35
<Project>
<PropertyGroup>
<TargetFramework>net6</TargetFramework>
<Version>0.1.1</Version>
<Authors>Nintynuts</Authors>
<Nullable>Enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<PropertyGroup Condition="$(Configuration) == 'Release'">
<DebugType>none</DebugType>
</PropertyGroup>
<PropertyGroup Condition="$(Configuration) == 'Debug'">
<DebugType>embedded</DebugType>
</PropertyGroup>
<ItemGroup>
<Using Include="System.Collections"/>
<Using Include="System.Collections.ObjectModel"/>
<Using Include="System.ComponentModel"/>
<Using Include="System.Globalization"/>
<Using Include="System.Reflection"/>
<Using Include="System.Text.RegularExpressions"/>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Roslynator.Analyzers" Version="4.*">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
</Project>