Explicitly set assembly name and root namespace to "Build.UpdateVersion" in order to avoid conflicts with xbuild.

This commit is contained in:
the_fiddler 2010-10-06 15:17:29 +00:00
parent 81e6211a55
commit 4d44184dd9
2 changed files with 4 additions and 3 deletions

View file

@ -22,7 +22,8 @@
</PropertyGroup>
<PropertyGroup>
<ProjectGuid>{75DC22B1-113F-4A66-96B9-2FF8208C10E8}</ProjectGuid>
<RootNamespace>Build</RootNamespace>
<AssemblyName>Build.UpdateVersion</AssemblyName>
<RootNamespace>Build.UpdateVersion</RootNamespace>
<OutputType>Exe</OutputType>
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
</PropertyGroup>
@ -43,4 +44,4 @@
<Exec Command="$(OutputPath)\Build.UpdateVersion.exe" Condition="$(OS) == 'Windows_NT'" />
<Exec Command="mono $(OutputPath)\Build.UpdateVersion.exe" Condition="$(OS) != 'Windows_NT'" />
</Target>
</Project>
</Project>

View file

@ -28,7 +28,7 @@
using System;
using System.IO;
namespace Build
namespace Build.UpdateVersion
{
class Program
{