-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gibbed.Memory.csproj
29 lines (29 loc) · 1.12 KB
/
Gibbed.Memory.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<LangVersion>9.0</LangVersion>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup>
<Company>Gibbed</Company>
<Authors>Gibbed</Authors>
<Description>https://gib.me/</Description>
<Copyright>Copyright © Gibbed 2024</Copyright>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<FileVersion>1.0.0.0</FileVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(GibbedMemory_TargetFrameworksToBuild)' == '' ">
<GibbedMemory_TargetFrameworksToBuild>$(TargetFrameworksToBuild)</GibbedMemory_TargetFrameworksToBuild>
</PropertyGroup>
<PropertyGroup Condition=" '$(GibbedMemory_TargetFrameworksToBuild)' == '' ">
<TargetFrameworks>net45;net472;net48</TargetFrameworks>
</PropertyGroup>
<PropertyGroup Condition=" '$(GibbedMemory_TargetFrameworksToBuild)' != '' ">
<TargetFrameworks>$(GibbedMemory_TargetFrameworksToBuild)</TargetFrameworks>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.Memory" Version="4.5.5" />
</ItemGroup>
<ItemGroup>
<None Remove=".git*" />
</ItemGroup>
</Project>