mirror of https://github.com/infosecn1nja/C3.git
20 lines
616 B
XML
20 lines
616 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>netcoreapp2.1</TargetFramework>
|
|
<ApplicationIcon />
|
|
<StartupObject>ResourceGenerator.Program</StartupObject>
|
|
<Configurations>Debug;Release</Configurations>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
<OutputPath>$(SolutionDir)..\Bin\Tools\</OutputPath>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
<OutputPath>$(SolutionDir)..\Bin\Tools\</OutputPath>
|
|
</PropertyGroup>
|
|
|
|
</Project>
|