Skip to content

Commit 77c9a99

Browse files
Merge pull request #135 from rabbitmq/rabbitmq-dotnet-client-134
Require .NET Framework 4.5
2 parents e5df4ba + ed3f38e commit 77c9a99

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

Dist-dotnet-4.0.props.in renamed to Dist-dotnet-4.5.props.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<PropertyGroup>
4-
<PropTargetFramework>v4.0</PropTargetFramework>
4+
<PropTargetFramework>v4.5</PropTargetFramework>
55
<PropUsingMono>@USINGMONO@</PropUsingMono>
66
<PropLaunchExe Condition="'$(PropUsingMono)' == 'true'">mono </PropLaunchExe>
77
<PropBuildWinRT>@BUILDWINRT@</PropBuildWinRT>

Local.props.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<PropertyGroup>
4-
<PropTargetFramework>v4.0</PropTargetFramework>
4+
<PropTargetFramework>v4.5</PropTargetFramework>
55
<PropAssemblyVersion>0.0.0.0</PropAssemblyVersion>
66
<PropUsingMono>false</PropUsingMono>
77

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ ensure-deliverables: rabbit-vsn
3131
file ${RELEASE_DIR}/${NAME_VSN}.zip
3232
file ${RELEASE_DIR}/${NAME_VSN}-client-htmldoc.zip
3333
file ${RELEASE_DIR}/${NAME_VSN}-client-htmldoc
34-
file ${RELEASE_DIR}/${NAME_VSN}-dotnet-4.0.zip
34+
file ${RELEASE_DIR}/${NAME_VSN}-dotnet-4.5.zip
3535
file ${RELEASE_DIR}/${NAME_VSN}-wcf-htmldoc.zip
3636
file ${RELEASE_DIR}/${NAME_VSN}-wcf-htmldoc
3737

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ There are two ways to consume the client:
2020

2121
## Supported Platforms and .NET Releases
2222

23-
The client requires .NET 4.0 or later. It supports Linux and OS X on [Mono](http://www.mono-project.com/).
23+
The client requires .NET 4.5 or later. It supports Linux and OS X on [Mono](http://www.mono-project.com/).
2424

2525

2626
## Contributing

appveyor.props.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<PropertyGroup>
4-
<PropTargetFramework>v4.0</PropTargetFramework>
4+
<PropTargetFramework>v4.5</PropTargetFramework>
55
<PropUsingMono>$(USINGMONO)</PropUsingMono>
66
<PropLaunchExe Condition="'$(PropUsingMono)' == 'true'">mono </PropLaunchExe>
77
<PropBuildWinRT>$(BUILDWINRT)</PropBuildWinRT>

dist.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ function main {
114114

115115
function dist-zips {
116116
# clean & build
117-
dist-target-framework dotnet-4.0
117+
dist-target-framework dotnet-4.5
118118

119119
### Source dist
120120
src-dist

0 commit comments

Comments
 (0)