Spaces:
Sleeping
Sleeping
File size: 1,138 Bytes
090629c |
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 |
<!--
This props file comes from dotnet/winforms. It gets ingested by dotnet/wpf and processed by
packaging/Microsoft.NET.Sdk.WindowsDesktop project.
It is referenced via Microsoft.NET.Sdk.WindowsDesktop/targets/Microsoft.NET.Sdk.WindowsDesktop.props.
-->
<Project>
<!--
============================================================
GenerateImplicitNamespaceImports
Generates implicit namespace imports source to intermediate directory for Windows Forms projects
============================================================
-->
<ItemGroup Condition="'$(UseWindowsForms)' == 'true' and ('$(ImplicitUsings)' == 'true' or '$(ImplicitUsings)' == 'enable')">
<!--
SDK defines the following global usings:
* System
* System.Collections.Generic
* System.Linq
* System.Threading.Tasks
-->
<Using Include="System.Drawing" />
<Using Include="System.Windows.Forms" />
</ItemGroup>
<!-- Windows Forms source generator and analyzers -->
<Import Project="System.Windows.Forms.Analyzers.props" />
</Project>
|