33 lines
952 B
XML
33 lines
952 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net8.0-windows</TargetFramework>
|
|
<StartupObject>ACEdotnet.My.MyApplication</StartupObject>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
<MyType>WindowsForms</MyType>
|
|
<AppDesignerFolder>Acedotnet</AppDesignerFolder>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Import Include="System.Data" />
|
|
<Import Include="System.Drawing" />
|
|
<Import Include="System.Windows.Forms" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Update="Acedotnet\Application.Designer.vb">
|
|
<DesignTime>True</DesignTime>
|
|
<AutoGen>True</AutoGen>
|
|
<DependentUpon>Application.myapp</DependentUpon>
|
|
</Compile>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Update="Acedotnet\Application.myapp">
|
|
<Generator>MyApplicationCodeGenerator</Generator>
|
|
<LastGenOutput>Application.Designer.vb</LastGenOutput>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
</Project> |