-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGFunctions.Winforms.csproj
More file actions
26 lines (26 loc) · 913 Bytes
/
Copy pathGFunctions.Winforms.csproj
File metadata and controls
26 lines (26 loc) · 913 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0-windows</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImportWindowsDesktopTargets>true</ImportWindowsDesktopTargets>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<AssemblyVersion>1.2.0.0</AssemblyVersion>
<FileVersion>1.2.0.0</FileVersion>
</PropertyGroup>
<ItemGroup>
<Compile Update="Input\NumericalInputTextBox.cs">
<SubType>Component</SubType>
</Compile>
<Compile Update="Input\NumericDisplayTextBox.cs">
<SubType>Component</SubType>
</Compile>
<Compile Update="Process\ProcessToggleView.cs">
<SubType>UserControl</SubType>
</Compile>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\GFunctions\GFunctions.csproj" />
</ItemGroup>
</Project>