Skip to content

Commit

Permalink
upgraded packages
Browse files Browse the repository at this point in the history
  • Loading branch information
Administrator committed May 23, 2017
1 parent ca0c212 commit 6e40617
Show file tree
Hide file tree
Showing 65 changed files with 2,241 additions and 719 deletions.
11 changes: 11 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,14 @@
/ServiceFabric.ServiceBus.Services/obj/'Debug'
*.user
/ServiceFabric.ServiceBus.Demo/MyServiceFabricApp/Backup*
/Backup
/Backup1
/ServiceFabric.ServiceBus.Clients/bin/Debug
/ServiceFabric.ServiceBus.Clients/obj
/ServiceFabric.ServiceBus.Services/obj
/ServiceFabricServicesBackup/ServiceFabric.ServiceBus.Demo/SampleQueueListeningStatefulService/obj/x64
/ServiceFabricServicesBackup/ServiceFabric.ServiceBus.Demo/SampleQueueListeningStatelessService/obj/x64
/ServiceFabricServicesBackup/ServiceFabric.ServiceBus.Demo/SampleSubscriptionListeningStatefulService/obj/x64
/ServiceFabricServicesBackup/ServiceFabric.ServiceBus.Demo/SampleSubscriptionListeningStatelessService/obj/x64
/UpgradeLog.htm
/UpgradeLog2.htm
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@ Provides a ServiceBusTopicCommunicationClient to be used with 'ServicePartitionC

## Release notes:

v5.0.0
- Upgraded nuget packages (SF 2.6.204)
- Upgraded sln to VS2017

v4.6.0
- Upgraded nuget packages (SF 2.5.216)

Expand Down
12 changes: 4 additions & 8 deletions ServiceFabric.ServiceBus.Clients.sln
Original file line number Diff line number Diff line change
@@ -1,27 +1,23 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.24720.0
# Visual Studio 15
VisualStudioVersion = 15.0.26510.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "ServiceFabric.ServiceBus.Clients", "ServiceFabric.ServiceBus.Clients\ServiceFabric.ServiceBus.Clients.xproj", "{F00FB0EE-57AB-4E6A-933D-C02A98E60C9E}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{AEE7481C-A281-41EA-A7D4-A70C786E47A1}"
ProjectSection(SolutionItems) = preProject
ServiceFabric.ServiceBus.Clients\global.json = ServiceFabric.ServiceBus.Clients\global.json
LICENSE = LICENSE
README.md = README.md
EndProjectSection
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ServiceFabric.ServiceBus.Clients", "ServiceFabric.ServiceBus.Clients\ServiceFabric.ServiceBus.Clients.csproj", "{F00FB0EE-57AB-4E6A-933D-C02A98E60C9E}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{0C1AD577-93E3-437C-A0C7-5918E0F4D575}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{0C1AD577-93E3-437C-A0C7-5918E0F4D575}.Debug|Any CPU.Build.0 = Debug|Any CPU
{0C1AD577-93E3-437C-A0C7-5918E0F4D575}.Release|Any CPU.ActiveCfg = Release|Any CPU
{0C1AD577-93E3-437C-A0C7-5918E0F4D575}.Release|Any CPU.Build.0 = Release|Any CPU
{F00FB0EE-57AB-4E6A-933D-C02A98E60C9E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F00FB0EE-57AB-4E6A-933D-C02A98E60C9E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F00FB0EE-57AB-4E6A-933D-C02A98E60C9E}.Release|Any CPU.ActiveCfg = Release|Any CPU
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<Description>Send BrokeredMessages to ServiceFabric Services through Service Bus. Optionally add this package to a project that will communicate to Reliable Services. Use in conjunction with ServiceFabric.ServiceBus.Services</Description>
<Copyright>2017</Copyright>
<VersionPrefix>5.0.0</VersionPrefix>
<Authors>Loek Duys</Authors>
<TargetFrameworks>net451;net46</TargetFrameworks>
<PlatformTarget>x64</PlatformTarget>
<AssemblyName>ServiceFabric.ServiceBus.Clients</AssemblyName>
<PackageId>ServiceFabric.ServiceBus.Clients</PackageId>
<PackageTags>ServiceFabric;Service;Fabric;ServiceBus;Bus;Reliable</PackageTags>
<PackageProjectUrl>https://github.com/loekd/ServiceFabric.ServiceBus</PackageProjectUrl>
<PackageLicenseUrl>https://github.com/loekd/ServiceFabric.ServiceBus/blob/master/LICENSE</PackageLicenseUrl>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/loekd/ServiceFabric.ServiceBus.git</RepositoryUrl>
<GenerateAssemblyTitleAttribute>false</GenerateAssemblyTitleAttribute>
<GenerateAssemblyDescriptionAttribute>false</GenerateAssemblyDescriptionAttribute>
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
<GenerateAssemblyCopyrightAttribute>false</GenerateAssemblyCopyrightAttribute>
</PropertyGroup>

<ItemGroup>
<None Update="content\**">
<Pack>true</Pack>
</None>
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.ServiceFabric.Services" Version="2.6.204" />
<PackageReference Include="Microsoft.WindowsAzure.ConfigurationManager" Version="3.2.3" />
<PackageReference Include="WindowsAzure.ServiceBus" Version="4.1.0" />
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'net451' ">
<Reference Include="System" />
<Reference Include="Microsoft.CSharp" />
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'net46' ">
<Reference Include="System" />
<Reference Include="Microsoft.CSharp" />
</ItemGroup>

</Project>

This file was deleted.

35 changes: 0 additions & 35 deletions ServiceFabric.ServiceBus.Clients/project.json

This file was deleted.

226 changes: 0 additions & 226 deletions ServiceFabric.ServiceBus.Clients/project.lock.json

This file was deleted.

Loading

0 comments on commit 6e40617

Please sign in to comment.