forked from MaterialDesignInXAML/MaterialDesignInXamlToolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Directory.Build.props
33 lines (28 loc) · 1.12 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
<Project>
<PropertyGroup>
<Copyright>Copyright © 2022</Copyright>
<Company>Mulholland Software/James Willock</Company>
<LangVersion>12.0</LangVersion>
<ErrorReport>prompt</ErrorReport>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>..\..\build\key.snk</AssemblyOriginatorKeyFile>
<DelaySign>false</DelaySign>
<Nullable>enable</Nullable>
<AccelerateBuildsInVisualStudio>true</AccelerateBuildsInVisualStudio>
<SuppressNETCoreSdkPreviewMessage>true</SuppressNETCoreSdkPreviewMessage>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
</PropertyGroup>
<ItemGroup>
<Using Include="System" />
<Using Include="System.Collections.Generic" />
<Using Include="System.IO" />
<Using Include="System.Linq" />
<Using Include="System.Text" />
<Using Include="System.Threading.Tasks" />
<Using Include="System.Windows" />
<Using Include="System.Windows.Controls" />
<Using Include="System.Windows.Controls.Primitives" />
<Using Include="System.Windows.Input" />
<Using Include="System.Windows.Markup" />
</ItemGroup>
</Project>