-
Notifications
You must be signed in to change notification settings - Fork 6
/
Directory.Build.props
48 lines (43 loc) · 1.93 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
36
37
38
39
40
41
42
43
44
45
46
47
48
<Project>
<PropertyGroup>
<!-- Assembly Info -->
<Company>Ubisoft</Company>
<Copyright>Copyright © $([System.DateTime]::UtcNow.Year) $(Company)</Copyright>
<Description>Tool to view and compare versions of a file</Description>
<Product>GitTimelapseView</Product>
<Version>0.0.0</Version>
<!-- Compile Options -->
<LangVersion>10.0</LangVersion>
<TargetFramework>net6.0-windows</TargetFramework>
<Deterministic>true</Deterministic>
<Features>strict</Features>
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
<DebugType>full</DebugType>
<NoWarn>NU1603</NoWarn>
<OutputPath>$(SolutionDir)\bin\$(Configuration)\</OutputPath>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<DefaultItemExcludes>$(DefaultItemExcludes);publish/**/*</DefaultItemExcludes>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<PropertyGroup Condition="'$(BuildingInsideVisualStudio)' == 'true'">
<TreatWarningsAsErrors>False</TreatWarningsAsErrors>
</PropertyGroup>
<ItemGroup>
<Using Include="System.Diagnostics" />
<Using Include="System.Reflection" />
<Using Include="System.IO" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="MinVer" PrivateAssets="All" Version="2.5.0" />
<PackageReference Include="Meziantou.Analyzer" Version="1.0.697">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.354">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
</Project>