forked from DebugST/STNodeEditor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathST.Library.UI.csproj
More file actions
35 lines (35 loc) · 1.41 KB
/
Copy pathST.Library.UI.csproj
File metadata and controls
35 lines (35 loc) · 1.41 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net40;net6.0-windows</TargetFrameworks>
<!--<TargetFrameworks>net6.0-windows</TargetFrameworks>-->
<OutputType>Library</OutputType>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<UseWindowsForms>true</UseWindowsForms>
<ImportWindowsDesktopTargets>true</ImportWindowsDesktopTargets>
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DocumentationFile>bin\Release\ST.Library.UI.XML</DocumentationFile>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<ItemGroup>
<Compile Update="NodeEditor\STNodeEditorPannel.cs">
<SubType>Component</SubType>
</Compile>
<Compile Update="NodeEditor\STNodeTreeView.cs">
<SubType>Component</SubType>
</Compile>
<Compile Update="NodeEditor\STNodeEditor.cs">
<SubType>Component</SubType>
</Compile>
<Compile Update="NodeEditor\STNodePropertyGrid.cs">
<SubType>Component</SubType>
</Compile>
</ItemGroup>
<!--<ItemGroup>
<PackageReference Include="Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers" Version="0.4.410601">
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.Windows.Compatibility" Version="7.0.0" />
</ItemGroup>-->
</Project>