mirror of
https://github.com/tribufu/ServerManagers
synced 2026-05-06 15:17:34 +00:00
22 lines
No EOL
862 B
XML
22 lines
No EOL
862 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup Label="Globals">
|
|
<Configurations>Debug;Release;Debug - Beta</Configurations>
|
|
</PropertyGroup>
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net462</TargetFramework>
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
<ApplicationIcon>Art\favicon.ico</ApplicationIcon>
|
|
<StartupObject>ServerManagerTool.Updater.Program</StartupObject>
|
|
<AssemblyName>ServerManagerUpdater</AssemblyName>
|
|
<RootNamespace>ServerManagerTool.Updater</RootNamespace>
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
<DebugType>none</DebugType>
|
|
<DebugSymbols>false</DebugSymbols>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Reference Include="System.Management" />
|
|
</ItemGroup>
|
|
</Project> |