-
Notifications
You must be signed in to change notification settings - Fork 4
/
Directory.Build.props
32 lines (27 loc) · 1.36 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
<?xml version="1.0" encoding="utf-8"?>
<Project>
<ItemGroup Label="commom configuration code style.">
<!-- <PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.435">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference> -->
</ItemGroup>
<!-- <Choose>
<When Condition="Exists('../SharedAssemblyInfo.cs')">
<ItemGroup>
<Compile Include="..\SharedAssemblyInfo.cs" Link="Properties\SharedAssemblyInfo.cs" />
<Compile Include="..\SharedGlobalUsings.cs" Link="SharedGlobalUsings.cs" />
<AdditionalFiles Include="..\stylecop.json" Link="stylecop.json" />
<None Include="..\.editorconfig" Link=".editorconfig" />
</ItemGroup>
</When>
<Otherwise>
<ItemGroup>
<Compile Include="..\..\SharedAssemblyInfo.cs" Link="Properties\SharedAssemblyInfo.cs" />
<Compile Include="..\..\SharedGlobalUsings.cs" Link="SharedGlobalUsings.cs" />
<AdditionalFiles Include="..\..\stylecop.json" Link="stylecop.json" />
<None Include="..\..\.editorconfig" Link=".editorconfig" />
</ItemGroup>
</Otherwise>
</Choose> -->
</Project>