27 строки
904 B
XML
27 строки
904 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project>
|
|
|
|
<!--
|
|
Directory.Build.props is automatically picked up and imported by
|
|
Microsoft.Common.props. This file needs to exist, even if empty so that
|
|
files in the parent directory tree, with the same name, are not imported
|
|
instead. They import fairly early and only Sdk.props will have been
|
|
imported beforehand. We also don't need to add ourselves to
|
|
MSBuildAllProjects, as that is done by the file that imports us.
|
|
-->
|
|
|
|
<!--Set product category-->
|
|
<PropertyGroup>
|
|
<SixLaborsProjectCategory>samples</SixLaborsProjectCategory>
|
|
<IsPackable>false</IsPackable>
|
|
</PropertyGroup>
|
|
|
|
<!-- Import the solution .props file. -->
|
|
<Import Project="$(MSBuildThisFileDirectory)..\Directory.Build.props" />
|
|
|
|
<PropertyGroup>
|
|
<CodeAnalysisRuleSet>..\Drawing.Samples.ruleset</CodeAnalysisRuleSet>
|
|
</PropertyGroup>
|
|
|
|
</Project>
|