Skip to content

Commit

Permalink
fixed solution issues that prevented NuGet publication (#3819)
Browse files Browse the repository at this point in the history
* fixed solution issues that prevented NuGet publication

* fixed last publish bug
  • Loading branch information
Aaronontheweb committed Jun 6, 2019
1 parent 5e39555 commit 8ed7bbc
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 7 deletions.
15 changes: 15 additions & 0 deletions src/Akka.sln
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Akka.Benchmarks", "benchmar
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SpawnBenchmark", "benchmark\SpawnBenchmark\SpawnBenchmark.csproj", "{9BEAF609-B406-4CCB-9708-6E8DFF764232}"
EndProject
Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "Akka.Persistence.FSharp", "core\Akka.Persistence.FSharp\Akka.Persistence.FSharp.fsproj", "{539C3EB6-FCC8-41FA-9373-364605877EE1}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down Expand Up @@ -828,6 +830,18 @@ Global
{9BEAF609-B406-4CCB-9708-6E8DFF764232}.Release|x64.Build.0 = Release|Any CPU
{9BEAF609-B406-4CCB-9708-6E8DFF764232}.Release|x86.ActiveCfg = Release|Any CPU
{9BEAF609-B406-4CCB-9708-6E8DFF764232}.Release|x86.Build.0 = Release|Any CPU
{539C3EB6-FCC8-41FA-9373-364605877EE1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{539C3EB6-FCC8-41FA-9373-364605877EE1}.Debug|Any CPU.Build.0 = Debug|Any CPU
{539C3EB6-FCC8-41FA-9373-364605877EE1}.Debug|x64.ActiveCfg = Debug|Any CPU
{539C3EB6-FCC8-41FA-9373-364605877EE1}.Debug|x64.Build.0 = Debug|Any CPU
{539C3EB6-FCC8-41FA-9373-364605877EE1}.Debug|x86.ActiveCfg = Debug|Any CPU
{539C3EB6-FCC8-41FA-9373-364605877EE1}.Debug|x86.Build.0 = Debug|Any CPU
{539C3EB6-FCC8-41FA-9373-364605877EE1}.Release|Any CPU.ActiveCfg = Release|Any CPU
{539C3EB6-FCC8-41FA-9373-364605877EE1}.Release|Any CPU.Build.0 = Release|Any CPU
{539C3EB6-FCC8-41FA-9373-364605877EE1}.Release|x64.ActiveCfg = Release|Any CPU
{539C3EB6-FCC8-41FA-9373-364605877EE1}.Release|x64.Build.0 = Release|Any CPU
{539C3EB6-FCC8-41FA-9373-364605877EE1}.Release|x86.ActiveCfg = Release|Any CPU
{539C3EB6-FCC8-41FA-9373-364605877EE1}.Release|x86.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down Expand Up @@ -912,6 +926,7 @@ Global
{FA2E30CC-9F2D-4BFC-9899-347B32DF7181} = {01167D3C-49C4-4CDE-9787-C176D139ACDD}
{A1D57384-A933-480A-9DF4-FA5E60AB1A67} = {73108242-625A-4D7B-AA09-63375DBAE464}
{9BEAF609-B406-4CCB-9708-6E8DFF764232} = {73108242-625A-4D7B-AA09-63375DBAE464}
{539C3EB6-FCC8-41FA-9373-364605877EE1} = {01167D3C-49C4-4CDE-9787-C176D139ACDD}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {03AD8E21-7507-4E68-A4E9-F4A7E7273164}
Expand Down
2 changes: 1 addition & 1 deletion src/core/Akka.NodeTestRunner/Akka.NodeTestRunner.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<AssemblyTitle>Akka.NodeTestRunner</AssemblyTitle>
<TargetFrameworks>$(NetFrameworkTestVersion);$(NetCoreTestVersion)</TargetFrameworks>
<OutputType>Exe</OutputType>
<RuntimeIdentifiers>win7-x86</RuntimeIdentifiers>
<RuntimeIdentifiers>win7-x64</RuntimeIdentifiers>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<PropertyGroup>
<AssemblyTitle>Akka.Persistence.FSharp</AssemblyTitle>
<Description>F# API for persistence actors in Akka.NET</Description>
<TargetFrameworks>$(NetFrameworkLibVersion)</TargetFrameworks>
<TargetFrameworks>$(NetFrameworkLibVersion);$(NetStandardLibVersion)</TargetFrameworks>
<PackageTags>akka;actors;actor model;Akka;concurrency;F#;Fsharp;persistence;eventsource</PackageTags>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
Expand All @@ -18,11 +18,7 @@
<ProjectReference Include="..\Akka.Persistence\Akka.Persistence.csproj" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="FSharp.Core" Version="4.2.3"/>
</ItemGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<DefineConstants>$(DefineConstants);RELEASE</DefineConstants>
</PropertyGroup>

</Project>

0 comments on commit 8ed7bbc

Please sign in to comment.