123456789101112131415161718192021222324252627 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>netstandard2.0</TargetFramework>
- <Platforms>AnyCPU;x64;x86</Platforms>
- <Version>5.5.3</Version>
- <FileVersion>5.5.3.2</FileVersion>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x86'">
- <OutputPath>..\bin\x86\Debug\</OutputPath>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'">
- <OutputPath>..\bin\x86\Release\</OutputPath>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
- <OutputPath>..\bin\x64\Release\</OutputPath>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
- <OutputPath>..\bin\x64\Debug\</OutputPath>
- </PropertyGroup>
- </Project>
|