-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added .NET 6 dual targeting to all assemblies (#5926)
* added .NET 6 dual targeting to all assemblies have not added and .NET 6-specific code yet, just added support for it in the build system * adding verify files per-runtime * added all .NET 6 files * moved files to their own folder * added all Verified files
- Loading branch information
1 parent
6963557
commit e89287f
Showing
83 changed files
with
48,352 additions
and
453 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
38 changes: 19 additions & 19 deletions
38
src/contrib/cluster/Akka.Cluster.Sharding/Akka.Cluster.Sharding.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,25 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<Import Project="..\..\..\common.props" /> | ||
<Import Project="..\..\..\common.props"/> | ||
|
||
<PropertyGroup> | ||
<AssemblyTitle>Akka.Cluster.Sharding</AssemblyTitle> | ||
<Description>Sharded actors with managed lifecycle for Akka.NET cluster</Description> | ||
<TargetFrameworks>$(NetStandardLibVersion)</TargetFrameworks> | ||
<PackageTags>$(AkkaPackageTags);network;cluster;sharding</PackageTags> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<AssemblyTitle>Akka.Cluster.Sharding</AssemblyTitle> | ||
<Description>Sharded actors with managed lifecycle for Akka.NET cluster</Description> | ||
<TargetFrameworks>$(NetStandardLibVersion);$(NetLibVersion)</TargetFrameworks> | ||
<PackageTags>$(AkkaPackageTags);network;cluster;sharding</PackageTags> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<EmbeddedResource Include="reference.conf" /> | ||
<ProjectReference Include="..\..\..\core\Akka.Coordination\Akka.Coordination.csproj" /> | ||
<ProjectReference Include="..\..\..\core\Akka.Persistence\Akka.Persistence.csproj" /> | ||
<ProjectReference Include="..\Akka.Cluster.Tools\Akka.Cluster.Tools.csproj" /> | ||
<ProjectReference Include="..\Akka.DistributedData.LightningDB\Akka.DistributedData.LightningDB.csproj" /> | ||
<ProjectReference Include="..\Akka.DistributedData\Akka.DistributedData.csproj" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<EmbeddedResource Include="reference.conf"/> | ||
<ProjectReference Include="..\..\..\core\Akka.Coordination\Akka.Coordination.csproj"/> | ||
<ProjectReference Include="..\..\..\core\Akka.Persistence\Akka.Persistence.csproj"/> | ||
<ProjectReference Include="..\Akka.Cluster.Tools\Akka.Cluster.Tools.csproj"/> | ||
<ProjectReference Include="..\Akka.DistributedData.LightningDB\Akka.DistributedData.LightningDB.csproj"/> | ||
<ProjectReference Include="..\Akka.DistributedData\Akka.DistributedData.csproj"/> | ||
</ItemGroup> | ||
|
||
<PropertyGroup Condition=" '$(Configuration)' == 'Release' "> | ||
<DefineConstants>$(DefineConstants);RELEASE</DefineConstants> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)' == 'Release' "> | ||
<DefineConstants>$(DefineConstants);RELEASE</DefineConstants> | ||
</PropertyGroup> | ||
|
||
</Project> |
32 changes: 16 additions & 16 deletions
32
src/contrib/cluster/Akka.Cluster.Tools/Akka.Cluster.Tools.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,22 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<Import Project="..\..\..\common.props" /> | ||
<Import Project="..\..\..\common.props"/> | ||
|
||
<PropertyGroup> | ||
<AssemblyTitle>Akka.Cluster.Tools</AssemblyTitle> | ||
<Description>Distributed publish/subscribe, client and singleton support for Akka.NET cluster</Description> | ||
<TargetFrameworks>$(NetStandardLibVersion)</TargetFrameworks> | ||
<PackageTags>$(AkkaPackageTags);network;cluster</PackageTags> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<AssemblyTitle>Akka.Cluster.Tools</AssemblyTitle> | ||
<Description>Distributed publish/subscribe, client and singleton support for Akka.NET cluster</Description> | ||
<TargetFrameworks>$(NetStandardLibVersion);$(NetLibVersion)</TargetFrameworks> | ||
<PackageTags>$(AkkaPackageTags);network;cluster</PackageTags> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<EmbeddedResource Include="Client\reference.conf;PublishSubscribe\reference.conf;Singleton\reference.conf" /> | ||
<ProjectReference Include="..\..\..\core\Akka.Cluster\Akka.Cluster.csproj" /> | ||
<ProjectReference Include="..\..\..\core\Akka.Coordination\Akka.Coordination.csproj" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<EmbeddedResource Include="Client\reference.conf;PublishSubscribe\reference.conf;Singleton\reference.conf"/> | ||
<ProjectReference Include="..\..\..\core\Akka.Cluster\Akka.Cluster.csproj"/> | ||
<ProjectReference Include="..\..\..\core\Akka.Coordination\Akka.Coordination.csproj"/> | ||
</ItemGroup> | ||
|
||
<PropertyGroup Condition=" '$(Configuration)' == 'Release' "> | ||
<DefineConstants>$(DefineConstants);RELEASE</DefineConstants> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)' == 'Release' "> | ||
<DefineConstants>$(DefineConstants);RELEASE</DefineConstants> | ||
</PropertyGroup> | ||
|
||
</Project> |
36 changes: 18 additions & 18 deletions
36
src/contrib/cluster/Akka.DistributedData.LightningDB/Akka.DistributedData.LightningDB.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,25 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<Import Project="..\..\..\common.props" /> | ||
<Import Project="..\..\..\common.props"/> | ||
|
||
<PropertyGroup> | ||
<AssemblyTitle>Akka.DistributedData.LightningDB</AssemblyTitle> | ||
<Description>Replicated data using CRDT structures</Description> | ||
<TargetFramework>$(NetStandardLibVersion)</TargetFramework> | ||
<PackageTags>$(AkkaPackageTags);network;cluster;crdt;replication;lightningdb;lmdb</PackageTags> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<AssemblyTitle>Akka.DistributedData.LightningDB</AssemblyTitle> | ||
<Description>Replicated data using CRDT structures</Description> | ||
<TargetFrameworks>$(NetStandardLibVersion);$(NetLibVersion)</TargetFrameworks> | ||
<PackageTags>$(AkkaPackageTags);network;cluster;crdt;replication;lightningdb;lmdb</PackageTags> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<EmbeddedResource Include="reference.conf" /> | ||
<ProjectReference Include="..\Akka.DistributedData\Akka.DistributedData.csproj" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<EmbeddedResource Include="reference.conf"/> | ||
<ProjectReference Include="..\Akka.DistributedData\Akka.DistributedData.csproj"/> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="LightningDB" Version="0.14.0" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="LightningDB" Version="0.14.0"/> | ||
</ItemGroup> | ||
|
||
<PropertyGroup Condition=" '$(Configuration)' == 'Release' "> | ||
<DefineConstants>$(DefineConstants);RELEASE</DefineConstants> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)' == 'Release' "> | ||
<DefineConstants>$(DefineConstants);RELEASE</DefineConstants> | ||
</PropertyGroup> | ||
|
||
</Project> |
36 changes: 18 additions & 18 deletions
36
src/contrib/cluster/Akka.DistributedData/Akka.DistributedData.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,25 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<Import Project="..\..\..\common.props" /> | ||
<Import Project="..\..\..\common.props"/> | ||
|
||
<PropertyGroup> | ||
<AssemblyTitle>Akka.DistributedData</AssemblyTitle> | ||
<Description>Replicated data using CRDT structures</Description> | ||
<TargetFrameworks>$(NetStandardLibVersion)</TargetFrameworks> | ||
<PackageTags>$(AkkaPackageTags);network;cluster;crdt;replication</PackageTags> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<AssemblyTitle>Akka.DistributedData</AssemblyTitle> | ||
<Description>Replicated data using CRDT structures</Description> | ||
<TargetFrameworks>$(NetStandardLibVersion);$(NetLibVersion)</TargetFrameworks> | ||
<PackageTags>$(AkkaPackageTags);network;cluster;crdt;replication</PackageTags> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<EmbeddedResource Include="reference.conf" /> | ||
<ProjectReference Include="..\..\..\core\Akka.Cluster\Akka.Cluster.csproj" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<EmbeddedResource Include="reference.conf"/> | ||
<ProjectReference Include="..\..\..\core\Akka.Cluster\Akka.Cluster.csproj"/> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Hyperion" Version="$(HyperionVersion)" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Hyperion" Version="$(HyperionVersion)"/> | ||
</ItemGroup> | ||
|
||
<PropertyGroup Condition=" '$(Configuration)' == 'Release' "> | ||
<DefineConstants>$(DefineConstants);RELEASE</DefineConstants> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)' == 'Release' "> | ||
<DefineConstants>$(DefineConstants);RELEASE</DefineConstants> | ||
</PropertyGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
34 changes: 17 additions & 17 deletions
34
src/contrib/persistence/Akka.Persistence.Query.Sql/Akka.Persistence.Query.Sql.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,23 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<Import Project="..\..\..\common.props" /> | ||
<Import Project="..\..\..\common.props"/> | ||
|
||
<PropertyGroup> | ||
<AssemblyTitle>Akka.Persistence.Query.Sql</AssemblyTitle> | ||
<Description>Akka.NET streams support for ADO.NET Persistence middleware.</Description> | ||
<TargetFrameworks>$(NetStandardLibVersion)</TargetFrameworks> | ||
<PackageTags>$(AkkaPackageTags);persistence;eventsource;sql;reactive;streams</PackageTags> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<AssemblyTitle>Akka.Persistence.Query.Sql</AssemblyTitle> | ||
<Description>Akka.NET streams support for ADO.NET Persistence middleware.</Description> | ||
<TargetFrameworks>$(NetStandardLibVersion);$(NetLibVersion)</TargetFrameworks> | ||
<PackageTags>$(AkkaPackageTags);persistence;eventsource;sql;reactive;streams</PackageTags> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<EmbeddedResource Include="reference.conf" /> | ||
<ProjectReference Include="..\..\..\core\Akka.Persistence\Akka.Persistence.csproj" /> | ||
<ProjectReference Include="..\..\..\core\Akka.Persistence.Query\Akka.Persistence.Query.csproj" /> | ||
<ProjectReference Include="..\Akka.Persistence.Sql.Common\Akka.Persistence.Sql.Common.csproj" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<EmbeddedResource Include="reference.conf"/> | ||
<ProjectReference Include="..\..\..\core\Akka.Persistence\Akka.Persistence.csproj"/> | ||
<ProjectReference Include="..\..\..\core\Akka.Persistence.Query\Akka.Persistence.Query.csproj"/> | ||
<ProjectReference Include="..\Akka.Persistence.Sql.Common\Akka.Persistence.Sql.Common.csproj"/> | ||
</ItemGroup> | ||
|
||
<PropertyGroup Condition=" '$(Configuration)' == 'Release' "> | ||
<DefineConstants>$(DefineConstants);RELEASE</DefineConstants> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)' == 'Release' "> | ||
<DefineConstants>$(DefineConstants);RELEASE</DefineConstants> | ||
</PropertyGroup> | ||
|
||
</Project> |
40 changes: 20 additions & 20 deletions
40
src/contrib/persistence/Akka.Persistence.Sql.Common/Akka.Persistence.Sql.Common.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,28 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<Import Project="..\..\..\common.props" /> | ||
<Import Project="..\..\..\common.props"/> | ||
|
||
<PropertyGroup> | ||
<AssemblyTitle>Akka.Persistence.Sql.Common</AssemblyTitle> | ||
<Description>Akka.NET Persistence ADO.NET middleware</Description> | ||
<TargetFrameworks>$(NetStandardLibVersion)</TargetFrameworks> | ||
<PackageTags>$(AkkaPackageTags);persistence;eventsource;sql</PackageTags> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<AssemblyTitle>Akka.Persistence.Sql.Common</AssemblyTitle> | ||
<Description>Akka.NET Persistence ADO.NET middleware</Description> | ||
<TargetFrameworks>$(NetStandardLibVersion);$(NetLibVersion)</TargetFrameworks> | ||
<PackageTags>$(AkkaPackageTags);persistence;eventsource;sql</PackageTags> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="System.Configuration.ConfigurationManager" Version="$(ConfigurationManagerVersion)" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="System.Configuration.ConfigurationManager" Version="$(ConfigurationManagerVersion)"/> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\..\..\core\Akka.Persistence\Akka.Persistence.csproj" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\..\..\core\Akka.Persistence\Akka.Persistence.csproj"/> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="System.Data.Common" Version="4.3.0" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="System.Data.Common" Version="4.3.0"/> | ||
</ItemGroup> | ||
|
||
<PropertyGroup Condition=" '$(Configuration)' == 'Release' "> | ||
<DefineConstants>$(DefineConstants);RELEASE</DefineConstants> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)' == 'Release' "> | ||
<DefineConstants>$(DefineConstants);RELEASE</DefineConstants> | ||
</PropertyGroup> | ||
|
||
</Project> |
38 changes: 19 additions & 19 deletions
38
src/contrib/persistence/Akka.Persistence.Sqlite/Akka.Persistence.Sqlite.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,26 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<Import Project="..\..\..\common.props" /> | ||
<Import Project="..\..\..\common.props"/> | ||
|
||
<PropertyGroup> | ||
<AssemblyTitle>Akka.Persistence.Sqlite</AssemblyTitle> | ||
<Description>Akka.NET Persistence journal and snapshot store backed by SQLite.</Description> | ||
<TargetFrameworks>$(NetStandardLibVersion)</TargetFrameworks> | ||
<PackageTags>$(AkkaPackageTags);persistence;eventsource;sql;sqlite</PackageTags> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<AssemblyTitle>Akka.Persistence.Sqlite</AssemblyTitle> | ||
<Description>Akka.NET Persistence journal and snapshot store backed by SQLite.</Description> | ||
<TargetFrameworks>$(NetStandardLibVersion);$(NetLibVersion)</TargetFrameworks> | ||
<PackageTags>$(AkkaPackageTags);persistence;eventsource;sql;sqlite</PackageTags> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<EmbeddedResource Include="sqlite.conf" /> | ||
<ProjectReference Include="..\..\..\core\Akka.Persistence\Akka.Persistence.csproj" /> | ||
<ProjectReference Include="..\Akka.Persistence.Sql.Common\Akka.Persistence.Sql.Common.csproj" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<EmbeddedResource Include="sqlite.conf"/> | ||
<ProjectReference Include="..\..\..\core\Akka.Persistence\Akka.Persistence.csproj"/> | ||
<ProjectReference Include="..\Akka.Persistence.Sql.Common\Akka.Persistence.Sql.Common.csproj"/> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.Data.SQLite" Version="6.0.4" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Microsoft.Data.SQLite" Version="6.0.4"/> | ||
</ItemGroup> | ||
|
||
<PropertyGroup Condition=" '$(Configuration)' == 'Release' "> | ||
<DefineConstants>$(DefineConstants);RELEASE</DefineConstants> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)' == 'Release' "> | ||
<DefineConstants>$(DefineConstants);RELEASE</DefineConstants> | ||
</PropertyGroup> | ||
|
||
</Project> |
44 changes: 20 additions & 24 deletions
44
src/contrib/serializers/Akka.Serialization.Hyperion/Akka.Serialization.Hyperion.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,23 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<Import Project="..\..\..\common.props" /> | ||
<PropertyGroup> | ||
<AssemblyTitle>Akka.Serialization.Hyperion</AssemblyTitle> | ||
<Description>Hyperion serializer for Akka.NET</Description> | ||
<TargetFrameworks>$(NetStandardLibVersion)</TargetFrameworks> | ||
<PackageTags>$(AkkaPackageTags);hyperion;serializer;serialize</PackageTags> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<EmbeddedResource Include="reference.conf" /> | ||
<PackageReference Include="Hyperion" Version="$(HyperionVersion)" /> | ||
<ProjectReference Include="..\..\..\core\Akka\Akka.csproj" /> | ||
</ItemGroup> | ||
<ItemGroup Condition=" '$(TargetFramework)' == '$(NetStandardLibVersion)' "> | ||
<PackageReference Include="System.Reflection" Version="4.3.0" /> | ||
<PackageReference Include="System.Runtime" Version="4.3.1" /> | ||
</ItemGroup> | ||
<ItemGroup Condition=" '$(TargetFramework)' == '$(NetFrameworkLibVersion)' "> | ||
<Reference Include="System" /> | ||
<Reference Include="Microsoft.CSharp" /> | ||
</ItemGroup> | ||
<Import Project="..\..\..\common.props"/> | ||
<PropertyGroup> | ||
<AssemblyTitle>Akka.Serialization.Hyperion</AssemblyTitle> | ||
<Description>Hyperion serializer for Akka.NET</Description> | ||
<TargetFrameworks>$(NetStandardLibVersion);$(NetLibVersion)</TargetFrameworks> | ||
<PackageTags>$(AkkaPackageTags);hyperion;serializer;serialize</PackageTags> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<EmbeddedResource Include="reference.conf"/> | ||
<PackageReference Include="Hyperion" Version="$(HyperionVersion)"/> | ||
<ProjectReference Include="..\..\..\core\Akka\Akka.csproj"/> | ||
</ItemGroup> | ||
<ItemGroup Condition=" '$(TargetFramework)' == '$(NetStandardLibVersion)' "> | ||
<PackageReference Include="System.Reflection" Version="4.3.0"/> | ||
<PackageReference Include="System.Runtime" Version="4.3.1"/> | ||
</ItemGroup> | ||
|
||
<PropertyGroup Condition=" '$(Configuration)' == 'Release' "> | ||
<DefineConstants>$(DefineConstants);RELEASE</DefineConstants> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)' == 'Release' "> | ||
<DefineConstants>$(DefineConstants);RELEASE</DefineConstants> | ||
</PropertyGroup> | ||
</Project> |
Oops, something went wrong.