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.
Zero/ZeroLevel/ZeroLevel.csproj

48 lines
2.0 KiB

5 years ago
<Project Sdk="Microsoft.NET.Sdk">
6 years ago
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Description>Infrastructure layer tools set.
</Description>
<Authors>ogoun</Authors>
<Company>ogoun</Company>
<AssemblyVersion>3.1.5.0</AssemblyVersion>
<PackageReleaseNotes>Append Configuration and ConfigurationSet Bind to object
Append runtime collection and array builders (CollectionFactory)</PackageReleaseNotes>
<PackageProjectUrl>https://github.com/ogoun/Zero/wiki</PackageProjectUrl>
<Copyright>Copyright Ogoun 2019</Copyright>
<PackageLicenseUrl>https://opensource.org/licenses/MIT</PackageLicenseUrl>
<PackageIconUrl>https://raw.githubusercontent.com/ogoun/Zero/master/zero.png</PackageIconUrl>
<RepositoryUrl>https://github.com/ogoun/Zero</RepositoryUrl>
<RepositoryType>GitHub</RepositoryType>
<Version>3.1.5</Version>
<FileVersion>3.1.5.0</FileVersion>
5 years ago
<Platforms>AnyCPU;x64</Platforms>
6 years ago
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
6 years ago
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
5 years ago
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
6 years ago
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
5 years ago
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.Buffers" Version="4.5.0" />
<PackageReference Include="System.Memory" Version="4.5.3" />
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="4.7.0" />
<PackageReference Include="System.ServiceProcess.ServiceController" Version="4.7.0" />
<PackageReference Include="System.Threading.Tasks.Extensions" Version="4.5.3" />
</ItemGroup>
</Project>

Powered by TurnKey Linux.