Skip to content
This repository has been archived by the owner on Oct 31, 2024. It is now read-only.

Commit

Permalink
Merge pull request #150 from Particular/release-8.0
Browse files Browse the repository at this point in the history
Release 8.0
  • Loading branch information
bording authored May 10, 2018
2 parents 934b0ac + ce47555 commit 191e4f1
Show file tree
Hide file tree
Showing 72 changed files with 353 additions and 3,146 deletions.
6 changes: 3 additions & 3 deletions GitVersion.yml
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
10 changes: 10 additions & 0 deletions LICENSE
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
88 changes: 0 additions & 88 deletions Octopus/DeploymentProcess.json

This file was deleted.

18 changes: 0 additions & 18 deletions Octopus/Project.json

This file was deleted.

26 changes: 0 additions & 26 deletions packaging/nuget/nservicebus.host.nuspec

This file was deleted.

26 changes: 0 additions & 26 deletions packaging/nuget/nservicebus.host32.nuspec

This file was deleted.

24 changes: 0 additions & 24 deletions packaging/nuget/nservicebus.hosting.profiles.nuspec

This file was deleted.

4 changes: 0 additions & 4 deletions src/.nuget/packages.config

This file was deleted.

8 changes: 8 additions & 0 deletions src/Directory.Build.props
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.
25 changes: 25 additions & 0 deletions src/MergeDependencies.targets
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="&quot;$(ILRepack)&quot; /out:&quot;$(TempFolder)\$(AssemblyName).exe&quot; &quot;$(ProjectDir)$(OutputPath)$(AssemblyName).exe&quot; &quot;$(ProjectDir)$(OutputPath)log4net.dll&quot; &quot;$(ProjectDir)$(OutputPath)Microsoft.Practices.ServiceLocation.dll&quot; &quot;$(ProjectDir)$(OutputPath)Topshelf.dll&quot; /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>
Loading

0 comments on commit 191e4f1

Please sign in to comment.