Skip to content
This repository was archived by the owner on Mar 27, 2020. It is now read-only.

Commit 7c8427b

Browse files
authored
Merge pull request #158 from Particular/release-2.0
Release 2.0
2 parents 954295b + ec84197 commit 7c8427b

215 files changed

Lines changed: 3237 additions & 4254 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,3 +93,4 @@ src/scaffolding.config
9393
.idea/
9494
*.sln.iml
9595
src/.learningtransport/
96+
src/.attransport/

src/Packaging.NServiceBus.AmazonSQS/Packaging.NServiceBus.AmazonSQS.csproj

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
44
<PropertyGroup>
55
<AllowedReferenceRelatedFileExtensions>.pdb</AllowedReferenceRelatedFileExtensions>
6+
<TargetFrameworkProfile />
67
</PropertyGroup>
78
<PropertyGroup>
89
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
@@ -11,7 +12,7 @@
1112
<OutputType>Library</OutputType>
1213
<RootNamespace>Packaging.NServiceBus.AmazonSQS</RootNamespace>
1314
<AssemblyName>Packaging.NServiceBus.AmazonSQS</AssemblyName>
14-
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
15+
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
1516
<FileAlignment>512</FileAlignment>
1617
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
1718
</PropertyGroup>
@@ -47,18 +48,21 @@
4748
<Reference Include="AWSSDK.SQS, Version=3.3.0.0, Culture=neutral, PublicKeyToken=885c28607f98e604, processorArchitecture=MSIL">
4849
<HintPath>..\packages\AWSSDK.SQS.3.3.3.2\lib\net45\AWSSDK.SQS.dll</HintPath>
4950
</Reference>
50-
<Reference Include="Newtonsoft.Json, Version=10.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
51-
<HintPath>..\packages\Newtonsoft.Json.10.0.3\lib\net45\Newtonsoft.Json.dll</HintPath>
51+
<Reference Include="Newtonsoft.Json, Version=11.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
52+
<HintPath>..\packages\Newtonsoft.Json.11.0.2\lib\net45\Newtonsoft.Json.dll</HintPath>
5253
</Reference>
53-
<Reference Include="NServiceBus.AmazonSQS, Version=3.0.0.0, Culture=neutral, PublicKeyToken=9fc386479f8a226c, processorArchitecture=MSIL">
54-
<HintPath>..\packages\NServiceBus.AmazonSQS.3.1.0\lib\net452\NServiceBus.AmazonSQS.dll</HintPath>
54+
<Reference Include="NServiceBus.AmazonSQS, Version=4.0.0.0, Culture=neutral, PublicKeyToken=9fc386479f8a226c, processorArchitecture=MSIL">
55+
<HintPath>..\packages\NServiceBus.AmazonSQS.4.1.1\lib\net452\NServiceBus.AmazonSQS.dll</HintPath>
5556
</Reference>
56-
<Reference Include="NServiceBus.Core, Version=6.0.0.0, Culture=neutral, PublicKeyToken=9fc386479f8a226c, processorArchitecture=MSIL">
57-
<HintPath>..\packages\NServiceBus.6.4.3\lib\net452\NServiceBus.Core.dll</HintPath>
57+
<Reference Include="NServiceBus.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=9fc386479f8a226c, processorArchitecture=MSIL">
58+
<HintPath>..\packages\NServiceBus.7.1.4\lib\net452\NServiceBus.Core.dll</HintPath>
5859
</Reference>
5960
<Reference Include="System" />
61+
<Reference Include="System.Configuration" />
6062
<Reference Include="System.Runtime.Serialization" />
63+
<Reference Include="System.Security" />
6164
<Reference Include="System.ServiceModel" />
65+
<Reference Include="System.Transactions" />
6266
<Reference Include="System.Xml" />
6367
</ItemGroup>
6468
<ItemGroup>
@@ -73,6 +77,7 @@
7377
<ItemGroup>
7478
<Analyzer Include="..\packages\AWSSDK.S3.3.3.16.2\analyzers\dotnet\cs\AWSSDK.S3.CodeAnalysis.dll" />
7579
<Analyzer Include="..\packages\AWSSDK.SQS.3.3.3.2\analyzers\dotnet\cs\AWSSDK.SQS.CodeAnalysis.dll" />
80+
<Analyzer Include="..\packages\NServiceBus.7.1.4\analyzers\dotnet\cs\NServiceBus.Core.Analyzer.dll" />
7681
</ItemGroup>
7782
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
7883
<Target Name="AfterBuild">
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="AWSSDK.Core" version="3.3.21.6" targetFramework="net452" />
4-
<package id="AWSSDK.S3" version="3.3.16.2" targetFramework="net452" />
5-
<package id="AWSSDK.SQS" version="3.3.3.2" targetFramework="net452" />
6-
<package id="Newtonsoft.Json" version="10.0.3" targetFramework="net452" />
7-
<package id="NServiceBus" version="6.4.3" targetFramework="net452" />
8-
<package id="NServiceBus.AmazonSQS" version="3.1.0" targetFramework="net452" />
3+
<package id="AWSSDK.Core" version="3.3.21.6" targetFramework="net461" />
4+
<package id="AWSSDK.S3" version="3.3.16.2" targetFramework="net461" />
5+
<package id="AWSSDK.SQS" version="3.3.3.2" targetFramework="net461" />
6+
<package id="Newtonsoft.Json" version="11.0.2" targetFramework="net461" />
7+
<package id="NServiceBus" version="7.1.4" targetFramework="net461" />
8+
<package id="NServiceBus.AmazonSQS" version="4.1.1" targetFramework="net461" />
99
</packages>

src/Packaging.NServiceBus.AzureServiceBus/Packaging.NServiceBus.AzureServiceBus.csproj

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,19 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4-
<PropertyGroup>
5-
<AllowedReferenceRelatedFileExtensions>.pdb</AllowedReferenceRelatedFileExtensions>
6-
</PropertyGroup>
74
<PropertyGroup>
85
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
96
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
10-
<ProjectGuid>{4AD60A65-CD2B-44A9-970E-41F80D95B0FD}</ProjectGuid>
7+
<ProjectGuid>{ABA69FEC-470E-4638-9371-9D84B71605BD}</ProjectGuid>
118
<OutputType>Library</OutputType>
9+
<AppDesignerFolder>Properties</AppDesignerFolder>
1210
<RootNamespace>Packaging.NServiceBus.AzureServiceBus</RootNamespace>
1311
<AssemblyName>Packaging.NServiceBus.AzureServiceBus</AssemblyName>
14-
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
12+
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
1513
<FileAlignment>512</FileAlignment>
16-
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
14+
<Deterministic>true</Deterministic>
1715
</PropertyGroup>
1816
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
19-
<PlatformTarget>AnyCPU</PlatformTarget>
2017
<DebugSymbols>true</DebugSymbols>
2118
<DebugType>full</DebugType>
2219
<Optimize>false</Optimize>
@@ -26,17 +23,13 @@
2623
<WarningLevel>4</WarningLevel>
2724
</PropertyGroup>
2825
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
29-
<PlatformTarget>AnyCPU</PlatformTarget>
3026
<DebugType>pdbonly</DebugType>
3127
<Optimize>true</Optimize>
3228
<OutputPath>bin\Release\</OutputPath>
3329
<DefineConstants>TRACE</DefineConstants>
3430
<ErrorReport>prompt</ErrorReport>
3531
<WarningLevel>4</WarningLevel>
3632
</PropertyGroup>
37-
<PropertyGroup>
38-
<StartupObject />
39-
</PropertyGroup>
4033
<ItemGroup>
4134
<Reference Include="System" />
4235
<Reference Include="System.Runtime.Serialization" />
@@ -45,7 +38,7 @@
4538
</ItemGroup>
4639
<ItemGroup>
4740
<ProjectReference Include="..\ServiceControl.Transports.AzureServiceBus\ServiceControl.Transports.AzureServiceBus.csproj">
48-
<Project>{66ca123a-7e48-494f-a3d3-ded5dd664621}</Project>
41+
<Project>{37baaa9b-a17b-4cb7-8359-d09586cdaad2}</Project>
4942
<Name>ServiceControl.Transports.AzureServiceBus</Name>
5043
</ProjectReference>
5144
</ItemGroup>

src/Packaging.NServiceBus.AzureStorageQueues/Packaging.NServiceBus.AzureStorageQueues.csproj

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
44
<PropertyGroup>
55
<AllowedReferenceRelatedFileExtensions>.pdb</AllowedReferenceRelatedFileExtensions>
6+
<TargetFrameworkProfile />
67
</PropertyGroup>
78
<PropertyGroup>
89
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
@@ -11,7 +12,7 @@
1112
<OutputType>Library</OutputType>
1213
<RootNamespace>Packaging.NServiceBus.AzureStorageQueues</RootNamespace>
1314
<AssemblyName>Packaging.NServiceBus.AzureStorageQueues</AssemblyName>
14-
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
15+
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
1516
<FileAlignment>512</FileAlignment>
1617
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
1718
</PropertyGroup>
@@ -49,6 +50,9 @@
4950
<Name>ServiceControl.Transports.AzureStorageQueues</Name>
5051
</ProjectReference>
5152
</ItemGroup>
53+
<ItemGroup>
54+
<Analyzer Include="..\packages\NServiceBus.7.1.4\analyzers\dotnet\cs\NServiceBus.Core.Analyzer.dll" />
55+
</ItemGroup>
5256
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
5357
<Target Name="AfterBuild">
5458
<Message Text="Deleting files from output that should not be packaged" Importance="High" />
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="NServiceBus" version="6.2.1" targetFramework="net452" />
4-
<package id="System.ComponentModel.EventBasedAsync" version="4.3.0" targetFramework="net452" />
5-
<package id="System.Dynamic.Runtime" version="4.3.0" targetFramework="net452" />
6-
<package id="System.Linq.Queryable" version="4.3.0" targetFramework="net452" />
7-
<package id="System.Net.Requests" version="4.3.0" targetFramework="net452" />
3+
<package id="NServiceBus" version="7.1.4" targetFramework="net461" />
4+
<package id="System.ComponentModel.EventBasedAsync" version="4.3.0" targetFramework="net461" />
5+
<package id="System.Dynamic.Runtime" version="4.3.0" targetFramework="net461" />
6+
<package id="System.Linq.Queryable" version="4.3.0" targetFramework="net461" />
7+
<package id="System.Net.Requests" version="4.3.0" targetFramework="net461" />
88
</packages>

src/Packaging.NServiceBus.Learning/Packaging.NServiceBus.Learning.csproj renamed to src/Packaging.NServiceBus.LearningTransport/Packaging.NServiceBus.LearningTransport.csproj

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,16 @@
33
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
44
<PropertyGroup>
55
<AllowedReferenceRelatedFileExtensions>.pdb</AllowedReferenceRelatedFileExtensions>
6+
<TargetFrameworkProfile />
67
</PropertyGroup>
78
<PropertyGroup>
89
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
910
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
1011
<ProjectGuid>{F30AC7F6-FD0A-43D2-BC75-889F9A7D2872}</ProjectGuid>
1112
<OutputType>Library</OutputType>
12-
<RootNamespace>Packaging.NServiceBus.Learning</RootNamespace>
13-
<AssemblyName>Packaging.NServiceBus.Learning</AssemblyName>
14-
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
13+
<RootNamespace>Packaging.NServiceBus.LearningTransport</RootNamespace>
14+
<AssemblyName>Packaging.NServiceBus.LearningTransport</AssemblyName>
15+
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
1516
<FileAlignment>512</FileAlignment>
1617
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
1718
</PropertyGroup>
@@ -38,7 +39,7 @@
3839
<StartupObject />
3940
</PropertyGroup>
4041
<ItemGroup>
41-
<ProjectReference Include="..\ServiceControl.LearningTransport\ServiceControl.Transports.LearningTransport.csproj">
42+
<ProjectReference Include="..\ServiceControl.Transports.LearningTransport\ServiceControl.Transports.LearningTransport.csproj">
4243
<Project>{f820752b-5f01-40f1-ae26-1604f3c85f55}</Project>
4344
<Name>ServiceControl.Transports.LearningTransport</Name>
4445
</ProjectReference>
Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4+
<PropertyGroup>
5+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7+
<ProjectGuid>{B5EBF681-E632-4783-B003-08E9BB320621}</ProjectGuid>
8+
<OutputType>Library</OutputType>
9+
<RootNamespace>Packaging.NServiceBus.LegacyAzureServiceBus</RootNamespace>
10+
<AssemblyName>Packaging.NServiceBus.LegacyAzureServiceBus</AssemblyName>
11+
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
12+
<FileAlignment>512</FileAlignment>
13+
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
14+
<Deterministic>true</Deterministic>
15+
<TargetFrameworkProfile />
16+
</PropertyGroup>
17+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
18+
<PlatformTarget>AnyCPU</PlatformTarget>
19+
<DebugSymbols>true</DebugSymbols>
20+
<DebugType>full</DebugType>
21+
<Optimize>false</Optimize>
22+
<OutputPath>bin\Debug\</OutputPath>
23+
<DefineConstants>DEBUG;TRACE</DefineConstants>
24+
<ErrorReport>prompt</ErrorReport>
25+
<WarningLevel>4</WarningLevel>
26+
</PropertyGroup>
27+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
28+
<PlatformTarget>AnyCPU</PlatformTarget>
29+
<DebugType>pdbonly</DebugType>
30+
<Optimize>true</Optimize>
31+
<OutputPath>bin\Release\</OutputPath>
32+
<DefineConstants>TRACE</DefineConstants>
33+
<ErrorReport>prompt</ErrorReport>
34+
<WarningLevel>4</WarningLevel>
35+
</PropertyGroup>
36+
<PropertyGroup>
37+
<StartupObject />
38+
</PropertyGroup>
39+
<ItemGroup>
40+
<Reference Include="System" />
41+
<Reference Include="System.Core" />
42+
<Reference Include="System.Xml.Linq" />
43+
<Reference Include="System.Data.DataSetExtensions" />
44+
<Reference Include="Microsoft.CSharp" />
45+
<Reference Include="System.Data" />
46+
<Reference Include="System.Net.Http" />
47+
<Reference Include="System.Xml" />
48+
</ItemGroup>
49+
<ItemGroup>
50+
<Folder Include="Properties\" />
51+
</ItemGroup>
52+
<ItemGroup>
53+
<ProjectReference Include="..\ServiceControl.Transports.LegacyAzureServiceBus\ServiceControl.Transports.LegacyAzureServiceBus.csproj">
54+
<Project>{01108727-f41e-4fdf-becc-65836c68b82a}</Project>
55+
<Name>ServiceControl.Transports.LegacyAzureServiceBus</Name>
56+
</ProjectReference>
57+
</ItemGroup>
58+
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
59+
<Target Name="AfterBuild">
60+
<Message Text="Deleting files from output that should not be packaged" Importance="High" />
61+
<ItemGroup>
62+
<ExcessFiles Include="$(OutputPath)$(AssemblyName).*;$(OutputPath)NServiceBus.Core.*" />
63+
</ItemGroup>
64+
<Delete Files="@(ExcessFiles)" />
65+
</Target>
66+
</Project>

src/Packaging.NServiceBus.MSMQ/Packaging.NServiceBus.MSMQ.csproj

Lines changed: 29 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<Import Project="..\packages\NServiceBus.Transport.Msmq.1.0.0\build\NServiceBus.Transport.Msmq.props" Condition="Exists('..\packages\NServiceBus.Transport.Msmq.1.0.0\build\NServiceBus.Transport.Msmq.props')" />
34
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
45
<PropertyGroup>
56
<AllowedReferenceRelatedFileExtensions>.pdb</AllowedReferenceRelatedFileExtensions>
7+
<NuGetPackageImportStamp>
8+
</NuGetPackageImportStamp>
9+
<TargetFrameworkProfile />
610
</PropertyGroup>
711
<PropertyGroup>
812
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
@@ -11,7 +15,7 @@
1115
<OutputType>Library</OutputType>
1216
<RootNamespace>Packaging.NServiceBus.MSMQ</RootNamespace>
1317
<AssemblyName>Packaging.NServiceBus.MSMQ</AssemblyName>
14-
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
18+
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
1519
<FileAlignment>512</FileAlignment>
1620
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
1721
</PropertyGroup>
@@ -38,9 +42,24 @@
3842
<StartupObject />
3943
</PropertyGroup>
4044
<ItemGroup>
41-
<Content Include="marker.txt">
42-
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
43-
</Content>
45+
<Reference Include="NServiceBus.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=9fc386479f8a226c, processorArchitecture=MSIL">
46+
<HintPath>..\packages\NServiceBus.7.1.4\lib\net452\NServiceBus.Core.dll</HintPath>
47+
</Reference>
48+
<Reference Include="NServiceBus.Transport.Msmq, Version=1.0.0.0, Culture=neutral, PublicKeyToken=9fc386479f8a226c, processorArchitecture=MSIL">
49+
<HintPath>..\packages\NServiceBus.Transport.Msmq.1.0.0\lib\net452\NServiceBus.Transport.Msmq.dll</HintPath>
50+
</Reference>
51+
<Reference Include="System.Configuration" />
52+
<Reference Include="System.Messaging" />
53+
<Reference Include="System.Security" />
54+
<Reference Include="System.Transactions" />
55+
</ItemGroup>
56+
<ItemGroup>
57+
<None Include="packages.config">
58+
<SubType>Designer</SubType>
59+
</None>
60+
</ItemGroup>
61+
<ItemGroup>
62+
<Analyzer Include="..\packages\NServiceBus.7.1.4\analyzers\dotnet\cs\NServiceBus.Core.Analyzer.dll" />
4463
</ItemGroup>
4564
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
4665
<Target Name="AfterBuild">
@@ -50,4 +69,10 @@
5069
</ItemGroup>
5170
<Delete Files="@(ExcessFiles)" />
5271
</Target>
72+
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
73+
<PropertyGroup>
74+
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
75+
</PropertyGroup>
76+
<Error Condition="!Exists('..\packages\NServiceBus.Transport.Msmq.1.0.0\build\NServiceBus.Transport.Msmq.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\NServiceBus.Transport.Msmq.1.0.0\build\NServiceBus.Transport.Msmq.props'))" />
77+
</Target>
5378
</Project>

src/Packaging.NServiceBus.MSMQ/marker.txt

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)