forked from dotnet/dotnet-api-docs
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathPatternProviders.csproj
More file actions
28 lines (25 loc) · 865 Bytes
/
Copy pathPatternProviders.csproj
File metadata and controls
28 lines (25 loc) · 865 Bytes
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net10.0-windows</TargetFramework>
<UseWindowsForms>true</UseWindowsForms>
<UseWPF>true</UseWPF>
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
<EnableDefaultEmbeddedResourceItems>false</EnableDefaultEmbeddedResourceItems>
<RootNamespace>UIAProvider</RootNamespace>
<AssemblyName>UIAProvider</AssemblyName>
</PropertyGroup>
<ItemGroup>
<Compile Include="CustomGridItem.cs" />
<Compile Include="Form1.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="Form1.Designer.cs">
<DependentUpon>Form1.cs</DependentUpon>
</Compile>
<Compile Include="CustomGrid.cs">
<SubType>Component</SubType>
</Compile>
<Compile Include="Program.cs" />
</ItemGroup>
</Project>