GoodWe / GoodWe.WinForm / GoodWe.WinForm.csproj
Code · 15 lines · 386 bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15<Project Sdk="Microsoft.NET.Sdk">

  <PropertyGroup>
    <OutputType>WinExe</OutputType>
    <TargetFramework>net10.0-windows</TargetFramework>
    <Nullable>enable</Nullable>
    <UseWindowsForms>true</UseWindowsForms>
    <ImplicitUsings>enable</ImplicitUsings>
  </PropertyGroup>

  <ItemGroup>
    <ProjectReference Include="..\GoodWe\GoodWe.csproj" />
  </ItemGroup>

</Project>