-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathDirectory.Build.props
50 lines (45 loc) · 1.69 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
49
50
<Project>
<PropertyGroup>
<Nullable>enable</Nullable>
<WarningsAsErrors>true</WarningsAsErrors>
<AnalysisLevel>5</AnalysisLevel>
<LangVersion>11.0</LangVersion>
<ApplicationIcon>..\Icons\needle.ico</ApplicationIcon>
</PropertyGroup>
<PropertyGroup>
<EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles>
</PropertyGroup>
<PropertyGroup>
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\</SolutionDir>
</PropertyGroup>
<PropertyGroup>
<Title>AutoDI</Title>
<Copyright>Copyright $([System.DateTime]::Now.ToString('yyyy'))</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageIcon>images\needle.png</PackageIcon>
<RepositoryUrl>https://github.com/Keboo/AutoDI</RepositoryUrl>
<Authors>Keboo</Authors>
<PackageTags>AutoDI</PackageTags>
<EmbedUntrackedSources>True</EmbedUntrackedSources>
</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.Text"/>
<Using Include="System.Threading"/>
<Using Include="System.Windows"/>
</ItemGroup>
</Project>