mirror of https://github.com/ogoun/Zero.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
2.1 KiB
63 lines
2.1 KiB
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
<Description>Infrastructure layer tool set.
|
|
</Description>
|
|
<Authors>ogoun</Authors>
|
|
<Company>ogoun</Company>
|
|
<AssemblyVersion>3.3.5.1</AssemblyVersion>
|
|
<PackageReleaseNotes>Light Fix in MemoryStreamWriter, MemoryStreamReader</PackageReleaseNotes>
|
|
<PackageProjectUrl>https://github.com/ogoun/Zero/wiki</PackageProjectUrl>
|
|
<Copyright>Copyright Ogoun 2020</Copyright>
|
|
<PackageLicenseUrl></PackageLicenseUrl>
|
|
<PackageIconUrl></PackageIconUrl>
|
|
<RepositoryUrl>https://github.com/ogoun/Zero</RepositoryUrl>
|
|
<RepositoryType>GitHub</RepositoryType>
|
|
<Version>3.3.5.1</Version>
|
|
<FileVersion>3.3.5.1</FileVersion>
|
|
<Platforms>AnyCPU;x64;x86</Platforms>
|
|
<PackageIcon>zero.png</PackageIcon>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x86'">
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<ErrorReport>prompt</ErrorReport>
|
|
<DebugType>none</DebugType>
|
|
<DebugSymbols>false</DebugSymbols>
|
|
<PlatformTarget>x64</PlatformTarget>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'">
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<ErrorReport>prompt</ErrorReport>
|
|
<DebugType>none</DebugType>
|
|
<DebugSymbols>false</DebugSymbols>
|
|
<PlatformTarget>x86</PlatformTarget>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="..\zero.png">
|
|
<Pack>True</Pack>
|
|
<PackagePath></PackagePath>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
</Project>
|