|
|
@@ -7,6 +7,10 @@
|
|
|
<TargetExt Condition="'$(OutputType)' == 'Netmodule'">.netmodule</TargetExt>
|
|
|
</PropertyGroup>
|
|
|
|
|
|
+ <PropertyGroup>
|
|
|
+ <ProjectDir Condition="'$(ProjectDir)' == ''">$(MSBuildProjectDirectory)\</ProjectDir>
|
|
|
+ </PropertyGroup>
|
|
|
+
|
|
|
<PropertyGroup>
|
|
|
<AllowUnsafeBlocks Condition="'$(AllowUnsafeBlocks)' == ''">false</AllowUnsafeBlocks>
|
|
|
<AssemblyName Condition="'$(AssemblyName)' == ''">$(RootNamespace)</AssemblyName>
|
|
|
@@ -32,6 +36,12 @@
|
|
|
</ResolveAssemblyReference>
|
|
|
</Target>
|
|
|
|
|
|
+ <Target Name="_ComputeNonExistentFileProperty" Condition='false'>
|
|
|
+ <CreateProperty Value="__NonExistentSubDir__\__NonExistentFile__">
|
|
|
+ <Output TaskParameter="Value" PropertyName="NonExistentFile"/>
|
|
|
+ </CreateProperty>
|
|
|
+ </Target>
|
|
|
+
|
|
|
<Target Name="Build" DependsOnTargets="PrepareForBuild;ResolveAssemblyReferences;CoreCompile"/>
|
|
|
|
|
|
</Project>
|