You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
863 B
XML
24 lines
863 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0-windows</TargetFramework>
|
|
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
<OutputPath>..\bin\Debug\</OutputPath>
|
|
<DocumentationFile>..\bin\Debug\IPCLib.xml</DocumentationFile>
|
|
<LangVersion>7.2</LangVersion>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
<OutputPath>..\bin\Release\</OutputPath>
|
|
<DefineConstants>
|
|
</DefineConstants>
|
|
<LangVersion>7.2</LangVersion>
|
|
</PropertyGroup>
|
|
|
|
</Project>
|