Browse Source

Fixed FSharpBinding compilation warnings.

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/branches/3.0@5338 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
pull/1/head
Matt Ward 16 years ago
parent
commit
14ad268dd1
  1. 15
      src/AddIns/BackendBindings/FSharp/FSharpBinding/Project/FSharpBinding.fsproj
  2. 2
      src/AddIns/BackendBindings/FSharp/FSharpBinding/Project/Src/project.fs

15
src/AddIns/BackendBindings/FSharp/FSharpBinding/Project/FSharpBinding.fsproj

@ -21,7 +21,8 @@ @@ -21,7 +21,8 @@
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>3</WarningLevel>
<OtherFlags></OtherFlags>
<OtherFlags>
</OtherFlags>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
@ -90,10 +91,6 @@ @@ -90,10 +91,6 @@
<Name>System.Runtime.Serialization.Formatters.Soap</Name>
<AssemblyName>System.Runtime.Serialization.Formatters.Soap.dll</AssemblyName>
</Reference>
<Reference Include="System.Transactions, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<Name>System.Transactions</Name>
<AssemblyName>System.Transactions.dll</AssemblyName>
</Reference>
<Reference Include="System.DirectoryServices.Protocols, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<Name>System.DirectoryServices.Protocols</Name>
<AssemblyName>System.DirectoryServices.Protocols.dll</AssemblyName>
@ -106,10 +103,6 @@ @@ -106,10 +103,6 @@
<Name>System.Web.Services</Name>
<AssemblyName>System.Web.Services.dll</AssemblyName>
</Reference>
<Reference Include="System.Data, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<Name>System.Data</Name>
<AssemblyName>System.Data.dll</AssemblyName>
</Reference>
<Reference Include="System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<Name>System.Design</Name>
<AssemblyName>System.Design.dll</AssemblyName>
@ -126,10 +119,6 @@ @@ -126,10 +119,6 @@
<Name>Accessibility</Name>
<AssemblyName>Accessibility.dll</AssemblyName>
</Reference>
<Reference Include="System.Data.OracleClient, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<Name>System.Data.OracleClient</Name>
<AssemblyName>System.Data.OracleClient.dll</AssemblyName>
</Reference>
<Reference Include="System.ServiceProcess, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<Name>System.ServiceProcess</Name>
<AssemblyName>System.ServiceProcess.dll</AssemblyName>

2
src/AddIns/BackendBindings/FSharp/FSharpBinding/Project/Src/project.fs

@ -60,7 +60,7 @@ end @@ -60,7 +60,7 @@ end
type FSharpProjectNode = class
inherit ProjectNode
new (project : IProject) as x =
new (project : IProject) =
{ inherit ProjectNode(project) }
member x.AddParentFolder((virtualName : string), (relativeDirectoryPath : string), (directoryNodeList :Dictionary<string, DirectoryNode>)) =
if (relativeDirectoryPath.Length = 0

Loading…
Cancel
Save