Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Hutchinson <mhutch@xamarin.com>2014-01-17 12:36:02 +0400
committerMichael Hutchinson <mhutch@xamarin.com>2014-01-17 12:39:51 +0400
commit6de1a605c305550c03635c2bef8808da87a90a11 (patch)
tree557692e203bfa0125f771f1b9f270ca00dfcba14 /main/src/core/MonoDevelop.Projects.Formats.MSBuild
parent44410f920de746f464e624d5079525e01b2341e4 (diff)
[MSBuild] Add assembly redirects to v12 builder
Diffstat (limited to 'main/src/core/MonoDevelop.Projects.Formats.MSBuild')
-rw-r--r--main/src/core/MonoDevelop.Projects.Formats.MSBuild/MonoDevelop.Projects.Formats.MSBuild.dotnet.v12.0.csproj2
-rw-r--r--main/src/core/MonoDevelop.Projects.Formats.MSBuild/app.v12.0.config16
2 files changed, 17 insertions, 1 deletions
diff --git a/main/src/core/MonoDevelop.Projects.Formats.MSBuild/MonoDevelop.Projects.Formats.MSBuild.dotnet.v12.0.csproj b/main/src/core/MonoDevelop.Projects.Formats.MSBuild/MonoDevelop.Projects.Formats.MSBuild.dotnet.v12.0.csproj
index 4a84af7c75..d7e7809950 100644
--- a/main/src/core/MonoDevelop.Projects.Formats.MSBuild/MonoDevelop.Projects.Formats.MSBuild.dotnet.v12.0.csproj
+++ b/main/src/core/MonoDevelop.Projects.Formats.MSBuild/MonoDevelop.Projects.Formats.MSBuild.dotnet.v12.0.csproj
@@ -71,7 +71,7 @@
<Folder Include="MonoDevelop.Projects.Formats.MSBuild\" />
</ItemGroup>
<ItemGroup>
- <None Include="MonoDevelop.Projects.Formats.MSBuild.dotnet.v4.0.exe.config">
+ <None Include="app.v12.0.config">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<Link>MonoDevelop.Projects.Formats.MSBuild.exe.config</Link>
</None>
diff --git a/main/src/core/MonoDevelop.Projects.Formats.MSBuild/app.v12.0.config b/main/src/core/MonoDevelop.Projects.Formats.MSBuild/app.v12.0.config
new file mode 100644
index 0000000000..5257a37909
--- /dev/null
+++ b/main/src/core/MonoDevelop.Projects.Formats.MSBuild/app.v12.0.config
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="utf-8"?>
+<configuration>
+ <runtime>
+ <generatePublisherEvidence enabled="false" />
+ <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
+ <dependentAssembly>
+ <assemblyIdentity name="Microsoft.Build.Framework" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
+ <bindingRedirect oldVersion="0.0.0.0-100.0.0.0" newVersion="12.0.0.0" />
+ </dependentAssembly>
+ <dependentAssembly>
+ <assemblyIdentity name="Microsoft.Build.Engine" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
+ <bindingRedirect oldVersion="0.0.0.0-100.0.0.0" newVersion="12.0.0.0" />
+ </dependentAssembly>
+ </assemblyBinding>
+ </runtime>
+</configuration>