|
|
|
@ -147,17 +147,6 @@ |
|
|
|
|
|
|
|
|
|
|
|
</PropertyGroup> |
|
|
|
</PropertyGroup> |
|
|
|
|
|
|
|
|
|
|
|
<!-- |
|
|
|
|
|
|
|
These two compiler warnings are raised when a reference is bound to |
|
|
|
|
|
|
|
a different version than specified in the assembly reference version |
|
|
|
|
|
|
|
number. MSBuild raises the same warning in this case, so the compiler |
|
|
|
|
|
|
|
warning would be redundant. |
|
|
|
|
|
|
|
--> |
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(TargetFrameworkVersion)' != 'v1.0'"> |
|
|
|
|
|
|
|
<NoWarn Condition="'$(NoWarn)' != ''">$(NoWarn);</NoWarn> |
|
|
|
|
|
|
|
<NoWarn>$(NoWarn)1701;1702</NoWarn> |
|
|
|
|
|
|
|
</PropertyGroup> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup> |
|
|
|
<ItemGroup> |
|
|
|
<DocFileItem |
|
|
|
<DocFileItem |
|
|
|
Include="$(DocumentationFile)" |
|
|
|
Include="$(DocumentationFile)" |
|
|
|
@ -173,6 +162,13 @@ |
|
|
|
</CoreCompileDependsOn> |
|
|
|
</CoreCompileDependsOn> |
|
|
|
</PropertyGroup> |
|
|
|
</PropertyGroup> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition=" '$(BoocToolPath)' != '' "> |
|
|
|
|
|
|
|
<ReferencePath>$(ReferencePath);$(BoocToolPath)</ReferencePath> |
|
|
|
|
|
|
|
</PropertyGroup> |
|
|
|
|
|
|
|
<PropertyGroup Condition=" '$(BoocToolPath)' == '' "> |
|
|
|
|
|
|
|
<ReferencePath>$(ReferencePath);$(BooBinPath)</ReferencePath> |
|
|
|
|
|
|
|
</PropertyGroup> |
|
|
|
|
|
|
|
|
|
|
|
<Target |
|
|
|
<Target |
|
|
|
Name="CoreCompile" |
|
|
|
Name="CoreCompile" |
|
|
|
Inputs="$(MSBuildAllProjects); |
|
|
|
Inputs="$(MSBuildAllProjects); |
|
|
|
@ -192,8 +188,7 @@ |
|
|
|
<Booc |
|
|
|
<Booc |
|
|
|
OutputAssembly="@(IntermediateAssembly)" |
|
|
|
OutputAssembly="@(IntermediateAssembly)" |
|
|
|
References="@(ReferencePath)" |
|
|
|
References="@(ReferencePath)" |
|
|
|
Resources= " |
|
|
|
Resources= "@(ManifestResourceWithNoCulture); |
|
|
|
@(ManifestResourceWithNoCulture); |
|
|
|
|
|
|
|
@(ManifestNonResxWithNoCultureOnDisk); |
|
|
|
@(ManifestNonResxWithNoCultureOnDisk); |
|
|
|
@(CompiledLicenseFile)" |
|
|
|
@(CompiledLicenseFile)" |
|
|
|
ResponseFiles="$(CompilerResponseFile)" |
|
|
|
ResponseFiles="$(CompilerResponseFile)" |
|
|
|
@ -206,6 +201,17 @@ |
|
|
|
SourceDirectory="$(SourceDirectory)" |
|
|
|
SourceDirectory="$(SourceDirectory)" |
|
|
|
/> |
|
|
|
/> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<Copy |
|
|
|
|
|
|
|
Condition=" '$(BoocToolPath)' == '' " |
|
|
|
|
|
|
|
SkipUnchangedFiles="true" |
|
|
|
|
|
|
|
SourceFiles="$(BooBinPath)\Boo.Lang.dll" |
|
|
|
|
|
|
|
DestinationFolder="$(OutputPath)"/> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<Copy |
|
|
|
|
|
|
|
Condition=" '$(BoocToolPath)' != '' " |
|
|
|
|
|
|
|
SkipUnchangedFiles="true" |
|
|
|
|
|
|
|
SourceFiles="$(BoocToolPath)\Boo.Lang.dll" |
|
|
|
|
|
|
|
DestinationFolder="$(OutputPath)"/> |
|
|
|
</Target> |
|
|
|
</Target> |
|
|
|
|
|
|
|
|
|
|
|
<Import Project="$(MSBuildBinPath)\Microsoft.Common.targets" /> |
|
|
|
<Import Project="$(MSBuildBinPath)\Microsoft.Common.targets" /> |
|
|
|
|