| 123456789101112131415161718 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net6.0</TargetFramework>
- <LangVersion>8</LangVersion>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- <OutputPath>..\..\Bin\</OutputPath>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- <OutputPath>..\..\Bin\</OutputPath>
- </PropertyGroup>
- </Project>
|