34 lines
1011 B
XML
34 lines
1011 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net8.0-windows</TargetFramework>
|
|
<RootNamespace>OneClickRun</RootNamespace>
|
|
<AssemblyName>OneClickRun</AssemblyName>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>disable</ImplicitUsings>
|
|
<UseWPF>true</UseWPF>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
<ApplicationManifest>app.manifest</ApplicationManifest>
|
|
<Version>1.0.0</Version>
|
|
<Product>一键运行</Product>
|
|
<AssemblyTitle>一键运行</AssemblyTitle>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Using Include="System" />
|
|
<Using Include="System.Collections.Generic" />
|
|
<Using Include="System.IO" />
|
|
<Using Include="System.Linq" />
|
|
<Using Include="System.Threading" />
|
|
<Using Include="System.Threading.Tasks" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Update="assets\samples\hello.ps1">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
</Project>
|