-
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.
NuGet packaging for MNTR (Windows/.NET 4.5.2) (#2935)
* preliminary createmntrnuget step * make createmntrnuget as dep for createnuget * added netcoreapp1.1 publishing * removed manual copy of dotnet executables replaced with dotnet publish output * remove multi
- Loading branch information
Showing
5 changed files
with
106 additions
and
99 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
21 changes: 21 additions & 0 deletions
21
src/core/Akka.MultiNodeTestRunner/Akka.MultiNodeTestRunner.nuspec
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd"> | ||
<metadata> | ||
<id>Akka.MultiNodeTestRunner</id> | ||
<version>1.3.0-beta</version> | ||
<title>Akka.MultiNodeTestRunner</title> | ||
<authors>Akka.NET Team</authors> | ||
<owners>Akka.NET Team</owners> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<licenseUrl>https://github.com/akkadotnet/akka.net/blob/master/LICENSE</licenseUrl> | ||
<projectUrl>https://github.com/akkadotnet/akka.net</projectUrl> | ||
<iconUrl>http://getakka.net/images/AkkaNetLogo.Normal.png</iconUrl> | ||
<description>Akka.NET Multi-node Test Runner; used for executing tests written with Akka.Remote.TestKit</description> | ||
<copyright>Copyright � 2013-2017 Akka.NET Team</copyright> | ||
<tags>akka actors actor model Akka concurrency</tags> | ||
</metadata> | ||
<files> | ||
<file src="bin\Release\net452\win7-x64\publish\*.*" target="lib\net452\" /> | ||
<file src="bin\Release\netcoreapp1.1\win7-x64\publish\*.*" target="lib\netcoreapp1.1\" /> | ||
</files> | ||
</package> |
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