[svn] r6538: vs-plugin/trunk:
Nemerle.Compiler.Utils/Nemerle.Compiler.Utils.csproj
Nemerle.VsIntegration.T...
VladD2
svnadmin at nemerle.org
Wed Aug 16 16:36:00 CEST 2006
Log:
1. Restore <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> in Nemerle.Compiler.Utils.csproj.
Please, dont remove it.
2. Add to project Nemerle.VsIntegration.Tests.csproj default value for "Nemerle" environment variable/
3. Modify NemerleFileNode.ImageIndex for compatibility with old version of VS SDK.
Author: VladD2
Date: Wed Aug 16 16:35:54 2006
New Revision: 6538
Modified:
vs-plugin/trunk/Nemerle.Compiler.Utils/Nemerle.Compiler.Utils.csproj
vs-plugin/trunk/Nemerle.VsIntegration.Tests/Nemerle.VsIntegration.Tests.csproj
vs-plugin/trunk/Nemerle.VsIntegration/NemerleFileNode.cs
Modified: vs-plugin/trunk/Nemerle.Compiler.Utils/Nemerle.Compiler.Utils.csproj
==============================================================================
--- vs-plugin/trunk/Nemerle.Compiler.Utils/Nemerle.Compiler.Utils.csproj (original)
+++ vs-plugin/trunk/Nemerle.Compiler.Utils/Nemerle.Compiler.Utils.csproj Wed Aug 16 16:35:54 2006
@@ -89,6 +89,7 @@
<ItemGroup>
<Service Include="{B4F97281-0DBD-4835-9ED8-7DFB966E87FF}" />
</ItemGroup>
+ <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
Modified: vs-plugin/trunk/Nemerle.VsIntegration.Tests/Nemerle.VsIntegration.Tests.csproj
==============================================================================
--- vs-plugin/trunk/Nemerle.VsIntegration.Tests/Nemerle.VsIntegration.Tests.csproj (original)
+++ vs-plugin/trunk/Nemerle.VsIntegration.Tests/Nemerle.VsIntegration.Tests.csproj Wed Aug 16 16:35:54 2006
@@ -1,5 +1,8 @@
ďťż<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
+ <Nemerle Condition=" '$(Nemerle)' == '' ">$(ProgramFiles)\Nemerle</Nemerle>
+ </PropertyGroup>
+ <PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>8.0.50727</ProductVersion>
Modified: vs-plugin/trunk/Nemerle.VsIntegration/NemerleFileNode.cs
==============================================================================
--- vs-plugin/trunk/Nemerle.VsIntegration/NemerleFileNode.cs (original)
+++ vs-plugin/trunk/Nemerle.VsIntegration/NemerleFileNode.cs Wed Aug 16 16:35:54 2006
@@ -101,7 +101,7 @@
get
{
if (Path.GetExtension(FileName).ToLower() == GlobalConstants.FileExtension)
- return (int)ProjectNode.ImageName.TextFile;
+ return 6; //FixMe: temporarily for compatibility with old VS SDK //(int)ProjectNode.ImageName.TextFile;
else
return base.ImageIndex;
}
More information about the svn
mailing list