Skip to content
This repository was archived by the owner on Aug 11, 2021. It is now read-only.

Commit 714e424

Browse files
committed
[Bam,Core] Fixes #346. BAM .csproj files and generated package debug projects could not be built in MonoDevelop 7 due to MSBuild's Microsoft.CSharp.Targets not being found. This is a case error, the file should be Microsoft.CSharp.targets.
1 parent 7208aa5 commit 714e424

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

Bam.Core/Bam.Core.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
<Prefer32Bit>false</Prefer32Bit>
5555
<DocumentationFile>docbuild\Release\Bam.Core.XML</DocumentationFile>
5656
</PropertyGroup>
57-
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.Targets" />
57+
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
5858
<ItemGroup>
5959
<Compile Include="..\Common\CommonAssemblyInfo.cs">
6060
<Link>Properties\CommonAssemblyInfo.cs</Link>

Bam/Bam.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
<Prefer32Bit>false</Prefer32Bit>
7272
<DocumentationFile>docbuild\Release\bam.XML</DocumentationFile>
7373
</PropertyGroup>
74-
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.Targets" />
74+
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
7575
<ItemGroup>
7676
<Compile Include="..\Common\CommonAssemblyInfo.cs">
7777
<Link>Properties\CommonAssemblyInfo.cs</Link>

Bam/DebugProject.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ public static void
323323
var resources = CreateItemGroup(parent: project);
324324
CreateEmbeddedResourceFile(resourceFilePathName, resources);
325325

326-
CreateImport(@"$(MSBuildBinPath)\Microsoft.CSharp.Targets", false, project);
326+
CreateImport(@"$(MSBuildBinPath)\Microsoft.CSharp.targets", false, project);
327327

328328
var xmlWriterSettings = new System.Xml.XmlWriterSettings();
329329
xmlWriterSettings.Indent = true;

Changelog.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
31-May-2017 Fixes #346. BAM .csproj files and generated package debug projects could not be built in MonoDevelop 7 due to MSBuild's Microsoft.CSharp.Targets not being found. This is a case error, the file should be Microsoft.CSharp.targets.
2+
13
30-May-2017 Fixes #336. The VisualStudio 2017 redist paths changed sometime between RTM and the 15.2 update. This broke local application deployment. Now using the C runtime version 14.10.25008 for x86 and x64.
24

35
16-May-2017 ======== Version 1.1.1 beta 4 Release ========

0 commit comments

Comments
 (0)