Browse Source

fix samples/ILAsmBinding

pull/297/head
Siegfried Pammer 12 years ago
parent
commit
a3b76f08e2
  1. 18
      samples/ILAsmBinding/ILAsmBinding.sln
  2. 7
      samples/ILAsmBinding/Project/ILAsmBinding.csproj
  3. 3
      samples/ILAsmBinding/Project/ILAsmBinding.csproj.user
  4. 6
      samples/ILAsmBinding/Project/Src/ILAsmProject.cs
  5. 1
      samples/ILAsmBinding/Project/Src/ILAsmProjectBinding.cs

18
samples/ILAsmBinding/ILAsmBinding.sln

@ -1,8 +1,8 @@ @@ -1,8 +1,8 @@

Microsoft Visual Studio Solution File, Format Version 11.00
# Visual Studio 2010
# SharpDevelop 4.2.0.8590-beta
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ILAsmBinding", "Project\ILAsmBinding.csproj", "{6e59af58-f635-459a-9a35-c9ac41c00339}"
# SharpDevelop 5.0
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ILAsmBinding", "Project\ILAsmBinding.csproj", "{6E59AF58-F635-459A-9A35-C9AC41C00339}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ILAsmBuildTask", "ILAsmBuildTask\ILAsmBuildTask.csproj", "{77827AD7-1023-4352-A7E8-5CC3CE8FB133}"
EndProject
@ -10,21 +10,15 @@ Global @@ -10,21 +10,15 @@ Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{6e59af58-f635-459a-9a35-c9ac41c00339}.Debug|Any CPU.Build.0 = Debug|Any CPU
{6e59af58-f635-459a-9a35-c9ac41c00339}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{6e59af58-f635-459a-9a35-c9ac41c00339}.Release|Any CPU.Build.0 = Release|Any CPU
{6e59af58-f635-459a-9a35-c9ac41c00339}.Release|Any CPU.ActiveCfg = Release|Any CPU
{6E59AF58-F635-459A-9A35-C9AC41C00339}.Debug|Any CPU.Build.0 = Debug|Any CPU
{6E59AF58-F635-459A-9A35-C9AC41C00339}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{6E59AF58-F635-459A-9A35-C9AC41C00339}.Release|Any CPU.Build.0 = Release|Any CPU
{6E59AF58-F635-459A-9A35-C9AC41C00339}.Debug|Any CPU.Build.0 = Debug|Any CPU
{6E59AF58-F635-459A-9A35-C9AC41C00339}.Release|Any CPU.ActiveCfg = Release|Any CPU
{77827AD7-1023-4352-A7E8-5CC3CE8FB133}.Debug|Any CPU.Build.0 = Debug|Any CPU
{6E59AF58-F635-459A-9A35-C9AC41C00339}.Release|Any CPU.Build.0 = Release|Any CPU
{77827AD7-1023-4352-A7E8-5CC3CE8FB133}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{77827AD7-1023-4352-A7E8-5CC3CE8FB133}.Release|Any CPU.Build.0 = Release|Any CPU
{77827AD7-1023-4352-A7E8-5CC3CE8FB133}.Debug|Any CPU.Build.0 = Debug|Any CPU
{77827AD7-1023-4352-A7E8-5CC3CE8FB133}.Release|Any CPU.ActiveCfg = Release|Any CPU
{77827AD7-1023-4352-A7E8-5CC3CE8FB133}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal

7
samples/ILAsmBinding/Project/ILAsmBinding.csproj

@ -18,10 +18,11 @@ @@ -18,10 +18,11 @@
<RegisterForComInterop>False</RegisterForComInterop>
<GenerateSerializationAssemblies>Auto</GenerateSerializationAssemblies>
<BaseAddress>104333312</BaseAddress>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<PlatformTarget>AnyCPU</PlatformTarget>
<FileAlignment>4096</FileAlignment>
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
@ -51,10 +52,6 @@ @@ -51,10 +52,6 @@
<HintPath>..\..\..\bin\ICSharpCode.SharpDevelop.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="ICSharpCode.SharpDevelop.Dom">
<HintPath>..\..\..\bin\ICSharpCode.SharpDevelop.Dom.dll</HintPath>
<Private>False</Private>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="Src\AssemblyInfo.cs" />

3
samples/ILAsmBinding/Project/ILAsmBinding.csproj.user

@ -1,4 +1,5 @@ @@ -1,4 +1,5 @@
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<StartProgram>..\..\..\bin\SharpDevelop.exe</StartProgram>
</PropertyGroup>

6
samples/ILAsmBinding/Project/Src/ILAsmProject.cs

@ -7,9 +7,7 @@ @@ -7,9 +7,7 @@
using System;
using System.IO;
using ICSharpCode.SharpDevelop.Internal.Templates;
using ICSharpCode.SharpDevelop.Project;
using ICSharpCode.SharpDevelop.Dom;
namespace ICSharpCode.ILAsmBinding
{
@ -30,10 +28,6 @@ namespace ICSharpCode.ILAsmBinding @@ -30,10 +28,6 @@ namespace ICSharpCode.ILAsmBinding
get { return ILAsmProjectBinding.LanguageName; }
}
public override LanguageProperties LanguageProperties {
get { return LanguageProperties.None; }
}
public override ItemType GetDefaultItemType(string fileName)
{
if (string.Equals(".il", Path.GetExtension(fileName), StringComparison.OrdinalIgnoreCase))

1
samples/ILAsmBinding/Project/Src/ILAsmProjectBinding.cs

@ -7,7 +7,6 @@ @@ -7,7 +7,6 @@
using System;
using System.Xml;
using ICSharpCode.SharpDevelop.Internal.Templates;
using ICSharpCode.SharpDevelop.Project;
namespace ICSharpCode.ILAsmBinding

Loading…
Cancel
Save