Skip to content
This repository was archived by the owner on Oct 16, 2020. It is now read-only.

Commit a3b76f0

Browse files
fix samples/ILAsmBinding
1 parent 57bacdd commit a3b76f0

5 files changed

Lines changed: 10 additions & 25 deletions

File tree

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,24 @@
11

22
Microsoft Visual Studio Solution File, Format Version 11.00
33
# Visual Studio 2010
4-
# SharpDevelop 4.2.0.8590-beta
5-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ILAsmBinding", "Project\ILAsmBinding.csproj", "{6e59af58-f635-459a-9a35-c9ac41c00339}"
4+
# SharpDevelop 5.0
5+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ILAsmBinding", "Project\ILAsmBinding.csproj", "{6E59AF58-F635-459A-9A35-C9AC41C00339}"
66
EndProject
77
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ILAsmBuildTask", "ILAsmBuildTask\ILAsmBuildTask.csproj", "{77827AD7-1023-4352-A7E8-5CC3CE8FB133}"
88
EndProject
99
Global
1010
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1111
Debug|Any CPU = Debug|Any CPU
1212
Release|Any CPU = Release|Any CPU
13-
Debug|Any CPU = Debug|Any CPU
14-
Release|Any CPU = Release|Any CPU
1513
EndGlobalSection
1614
GlobalSection(ProjectConfigurationPlatforms) = postSolution
17-
{6e59af58-f635-459a-9a35-c9ac41c00339}.Debug|Any CPU.Build.0 = Debug|Any CPU
18-
{6e59af58-f635-459a-9a35-c9ac41c00339}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
19-
{6e59af58-f635-459a-9a35-c9ac41c00339}.Release|Any CPU.Build.0 = Release|Any CPU
20-
{6e59af58-f635-459a-9a35-c9ac41c00339}.Release|Any CPU.ActiveCfg = Release|Any CPU
21-
{6E59AF58-F635-459A-9A35-C9AC41C00339}.Debug|Any CPU.Build.0 = Debug|Any CPU
2215
{6E59AF58-F635-459A-9A35-C9AC41C00339}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
23-
{6E59AF58-F635-459A-9A35-C9AC41C00339}.Release|Any CPU.Build.0 = Release|Any CPU
16+
{6E59AF58-F635-459A-9A35-C9AC41C00339}.Debug|Any CPU.Build.0 = Debug|Any CPU
2417
{6E59AF58-F635-459A-9A35-C9AC41C00339}.Release|Any CPU.ActiveCfg = Release|Any CPU
25-
{77827AD7-1023-4352-A7E8-5CC3CE8FB133}.Debug|Any CPU.Build.0 = Debug|Any CPU
18+
{6E59AF58-F635-459A-9A35-C9AC41C00339}.Release|Any CPU.Build.0 = Release|Any CPU
2619
{77827AD7-1023-4352-A7E8-5CC3CE8FB133}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
27-
{77827AD7-1023-4352-A7E8-5CC3CE8FB133}.Release|Any CPU.Build.0 = Release|Any CPU
20+
{77827AD7-1023-4352-A7E8-5CC3CE8FB133}.Debug|Any CPU.Build.0 = Debug|Any CPU
2821
{77827AD7-1023-4352-A7E8-5CC3CE8FB133}.Release|Any CPU.ActiveCfg = Release|Any CPU
22+
{77827AD7-1023-4352-A7E8-5CC3CE8FB133}.Release|Any CPU.Build.0 = Release|Any CPU
2923
EndGlobalSection
3024
EndGlobal

samples/ILAsmBinding/Project/ILAsmBinding.csproj

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,11 @@
1818
<RegisterForComInterop>False</RegisterForComInterop>
1919
<GenerateSerializationAssemblies>Auto</GenerateSerializationAssemblies>
2020
<BaseAddress>104333312</BaseAddress>
21-
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
21+
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
2222
<PlatformTarget>AnyCPU</PlatformTarget>
2323
<FileAlignment>4096</FileAlignment>
2424
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
25+
<TargetFrameworkProfile />
2526
</PropertyGroup>
2627
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
2728
<DebugSymbols>true</DebugSymbols>
@@ -51,10 +52,6 @@
5152
<HintPath>..\..\..\bin\ICSharpCode.SharpDevelop.dll</HintPath>
5253
<Private>False</Private>
5354
</Reference>
54-
<Reference Include="ICSharpCode.SharpDevelop.Dom">
55-
<HintPath>..\..\..\bin\ICSharpCode.SharpDevelop.Dom.dll</HintPath>
56-
<Private>False</Private>
57-
</Reference>
5855
</ItemGroup>
5956
<ItemGroup>
6057
<Compile Include="Src\AssemblyInfo.cs" />

samples/ILAsmBinding/Project/ILAsmBinding.csproj.user

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
23
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
34
<StartProgram>..\..\..\bin\SharpDevelop.exe</StartProgram>
45
</PropertyGroup>

samples/ILAsmBinding/Project/Src/ILAsmProject.cs

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,7 @@
77

88
using System;
99
using System.IO;
10-
using ICSharpCode.SharpDevelop.Internal.Templates;
1110
using ICSharpCode.SharpDevelop.Project;
12-
using ICSharpCode.SharpDevelop.Dom;
1311

1412
namespace ICSharpCode.ILAsmBinding
1513
{
@@ -30,10 +28,6 @@ public override string Language {
3028
get { return ILAsmProjectBinding.LanguageName; }
3129
}
3230

33-
public override LanguageProperties LanguageProperties {
34-
get { return LanguageProperties.None; }
35-
}
36-
3731
public override ItemType GetDefaultItemType(string fileName)
3832
{
3933
if (string.Equals(".il", Path.GetExtension(fileName), StringComparison.OrdinalIgnoreCase))

samples/ILAsmBinding/Project/Src/ILAsmProjectBinding.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77

88
using System;
99
using System.Xml;
10-
using ICSharpCode.SharpDevelop.Internal.Templates;
1110
using ICSharpCode.SharpDevelop.Project;
1211

1312
namespace ICSharpCode.ILAsmBinding

0 commit comments

Comments
 (0)