-
Notifications
You must be signed in to change notification settings - Fork 1
/
Directory.Build.props
41 lines (33 loc) · 1.17 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
<?xml version="1.0" encoding="utf-8"?>
<Project>
<PropertyGroup>
<IsMsixPackage>false</IsMsixPackage>
</PropertyGroup>
<PropertyGroup Label="Generic Properties">
<DebugType>full</DebugType>
<IsPublishable>false</IsPublishable>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
<Nullable>enable</Nullable>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Release'">
<Optimize>true</Optimize>
</PropertyGroup>
<PropertyGroup Label="Assembly Properties">
<Authors>Rory Claasen (contact@roryclaasen.dev)</Authors>
<Copyright>All rights reserved.</Copyright>
<Product>Mosaic Video Viewer</Product>
</PropertyGroup>
<PropertyGroup Label="Code Quality">
<EnableNETAnalyzers>true</EnableNETAnalyzers>
</PropertyGroup>
<ItemGroup Label="Code Quality">
<AdditionalFiles Include="$(SolutionDir)\stylecop.json">
<Link>stylecop.json</Link>
</AdditionalFiles>
</ItemGroup>
<PropertyGroup>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
</PropertyGroup>
</Project>