AutorentSetup.csproj 471 B

1234567891011121314
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>WinExe</OutputType>
  4. <TargetFramework>net9.0-windows</TargetFramework>
  5. <UseWindowsForms>true</UseWindowsForms>
  6. <Nullable>enable</Nullable>
  7. <ImplicitUsings>enable</ImplicitUsings>
  8. <AssemblyName>AutorentSetup</AssemblyName>
  9. </PropertyGroup>
  10. <ItemGroup>
  11. <EmbeddedResource Include="app.zip" Condition="Exists('app.zip')" LogicalName="AppPackage.zip" />
  12. </ItemGroup>
  13. </Project>