This repository has been archived by the owner on Oct 31, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #150 from Particular/release-8.0
Release 8.0
- Loading branch information
Showing
72 changed files
with
353 additions
and
3,146 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
assembly-versioning-scheme: Major | ||
next-version: 7.0 | ||
next-version: 8.0 | ||
branches: | ||
develop: | ||
tag: alpha | ||
releases?[/-]: | ||
tag: beta | ||
release: | ||
tag: rc |
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,10 @@ | ||
By accessing NServiceBus code here, you are agreeing to the following licensing terms. | ||
If you do not agree to these terms, do not access the NServiceBus code. | ||
|
||
Your license to the NServiceBus source and/or binaries is governed by the Reciprocal Public License 1.5 (RPL1.5) license as described here: | ||
|
||
http://www.opensource.org/licenses/rpl1.5.txt | ||
|
||
If you do not wish to release the source of software you build using NServiceBus, you may use NServiceBus source and/or binaries under the License Agreement described here: | ||
|
||
http://particular.net/LicenseAgreement |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,8 @@ | ||
<Project> | ||
|
||
<PropertyGroup> | ||
<LangVersion>latest</LangVersion> | ||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> | ||
</PropertyGroup> | ||
|
||
</Project> |
File renamed without changes.
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,25 @@ | ||
<Project> | ||
|
||
<PropertyGroup> | ||
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="ILRepack" Version="2.0.13" PrivateAssets="All" /> | ||
</ItemGroup> | ||
|
||
<Target Name="MergeDependencies" AfterTargets="CopyFilesToOutputDirectory" Condition="'$(Configuration)' == 'Release'"> | ||
<PropertyGroup> | ||
<TempFolder>$(ProjectDir)$(OutputPath)temp</TempFolder> | ||
</PropertyGroup> | ||
<MakeDir Directories="$(TempFolder)" /> | ||
<Exec Command=""$(ILRepack)" /out:"$(TempFolder)\$(AssemblyName).exe" "$(ProjectDir)$(OutputPath)$(AssemblyName).exe" "$(ProjectDir)$(OutputPath)log4net.dll" "$(ProjectDir)$(OutputPath)Microsoft.Practices.ServiceLocation.dll" "$(ProjectDir)$(OutputPath)Topshelf.dll" /targetplatform:v4 /internalize /keyfile:$(AssemblyOriginatorKeyFile)" /> | ||
<ItemGroup> | ||
<TempFiles Include="$(TempFolder)\*.*" /> | ||
</ItemGroup> | ||
<Copy SourceFiles="@(TempFiles)" DestinationFolder="$(OutputPath)" OverwriteReadOnlyFiles="true" /> | ||
<Delete Files="@(TempFiles)" /> | ||
<RemoveDir Directories="$(TempFolder)" /> | ||
</Target> | ||
|
||
</Project> |
Oops, something went wrong.