-
Notifications
You must be signed in to change notification settings - Fork 11
/
Directory.Build.props
46 lines (42 loc) · 1.6 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
<Project>
<PropertyGroup>
<Nullable>enable</Nullable>
<WarningsAsErrors>true</WarningsAsErrors>
<AnalysisLevel>5</AnalysisLevel>
<LangVersion>12.0</LangVersion>
</PropertyGroup>
<PropertyGroup>
<EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles>
</PropertyGroup>
<PropertyGroup>
<Title>XAML UI Testing Library</Title>
<Description>A library that allows unit tests to be written against WPF XAML.</Description>
<Copyright>Copyright 2020</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageIcon>icon.png</PackageIcon>
<RepositoryUrl>https://github.com/Keboo/XamlTest</RepositoryUrl>
<Authors>Keboo</Authors>
</PropertyGroup>
<!-- Source Link Properties -->
<PropertyGroup>
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSource>true</EmbedUntrackedSource>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<ItemGroup>
<Using Include="System"/>
<Using Include="System.Collections.Generic"/>
<Using Include="System.Diagnostics"/>
<Using Include="System.Diagnostics.CodeAnalysis"/>
<Using Include="System.Globalization"/>
<Using Include="System.IO"/>
<Using Include="System.Linq"/>
<Using Include="System.Reflection"/>
<Using Include="System.Text"/>
<Using Include="System.Threading"/>
<Using Include="System.Threading.Tasks"/>
<Using Include="System.Windows"/>
</ItemGroup>
</Project>