Skip to content

Commit 35fc4c5

Browse files
author
serg.morozov
committed
.netstandart 2.1
1 parent c2b2e33 commit 35fc4c5

File tree

6 files changed

+17
-7
lines changed

6 files changed

+17
-7
lines changed
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
namespace System.Runtime.CompilerServices
2+
{
3+
internal static class IsExternalInit {}
4+
}

NuclearAbilitySystem.Implementation/NuclearAbilitySystem.Implementation.csproj

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net6.0</TargetFramework>
4+
<TargetFramework>netstandard2.1</TargetFramework>
55
<Nullable>enable</Nullable>
66
<LangVersion>9</LangVersion>
7-
<RootNamespace>AbilitySystem.Implementation</RootNamespace>
87
</PropertyGroup>
98

109
<ItemGroup>
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
namespace System.Runtime.CompilerServices
2+
{
3+
internal static class IsExternalInit {}
4+
}

NuclearAbilitySystem.Tests/NuclearAbilitySystem.Tests.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net6.0</TargetFramework>
4+
<TargetFramework>netstandard2.1</TargetFramework>
55
<Configurations>Debug;Release;Test</Configurations>
66
<Platforms>AnyCPU</Platforms>
77
<LangVersion>9</LangVersion>
88
<Nullable>enable</Nullable>
9-
<RootNamespace>AbilitySystem.Tests</RootNamespace>
9+
<OutputType>Library</OutputType>
1010
</PropertyGroup>
1111

1212
<ItemGroup>
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
namespace System.Runtime.CompilerServices
2+
{
3+
internal static class IsExternalInit {}
4+
}

NuclearAbilitySystem/NuclearAbilitySystem.csproj

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,14 @@
22

33
<PropertyGroup>
44
<OutputType>Library</OutputType>
5-
<TargetFramework>net6.0</TargetFramework>
5+
<TargetFramework>netstandard2.1</TargetFramework>
66
<LangVersion>9</LangVersion>
77
<Nullable>enable</Nullable>
88
<Configurations>Debug;Release;Test</Configurations>
99
<Platforms>AnyCPU</Platforms>
10-
<RootNamespace></RootNamespace>
1110
<IsPackable>true</IsPackable>
1211
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
13-
<Version>0.1.0</Version>
12+
<Version>0.1.1</Version>
1413
<Title>NuclearAbilitySystem</Title>
1514
<Authors>NuclearBand</Authors>
1615
<Description>A flexible ability system that allows creating, configuring, and executing abilities in games</Description>

0 commit comments

Comments
 (0)