Skip to content

Commit ac9a06d

Browse files
committedMar 14, 2012
[Mono] Fixing build for mono-4.0 target platform
Signed-off-by: Gleb Golubitsky <sectoid@gnolltech.org>
1 parent 8df2677 commit ac9a06d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed
 

‎Nemerle.XBuild.Tasks.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2+
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<PropertyGroup>
44
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
55
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>

‎NemerleAll-Mono.nproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project DefaultTargets="DevBuild2Stage" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="2.0">
1+
<Project DefaultTargets="DevBuild2Stage" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
22
<UsingTask TaskName="MSBuild.Community.Tasks.FileUpdate" AssemblyFile="$(MSBuildProjectDirectory)\ExternalDependences\MSBuild.Community.Tasks.dll" />
33
<PropertyGroup Condition=" '$(NTargetName)' == '' ">
44
<NTargetName>Rebuild</NTargetName>
@@ -118,10 +118,10 @@
118118
</Target>
119119
<!--Prepare boot-->
120120
<Target Name="NPrepareBoot">
121-
<CreateItem Include="$(NRoot)\boot\*.exe">
121+
<CreateItem Include="$(NRootBoot)\*.exe">
122122
<Output ItemName="NBootFiles" TaskParameter="Include" />
123123
</CreateItem>
124-
<CreateItem Include="$(NRoot)\boot\*.dll">
124+
<CreateItem Include="$(NRootBoot)\*.dll">
125125
<Output ItemName="NBootFiles" TaskParameter="Include" />
126126
</CreateItem>
127127
<Copy SourceFiles="@(NBootFiles)" DestinationFolder="$(NBoot)" />

0 commit comments

Comments
 (0)
Please sign in to comment.