Mercurial > repos > IBBoard
changeset 18:62fb27fd8c29
Re #10 - Migrate to .csproj files
* Migrate IBBoard to .csproj and remove .mdp file
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Tue, 17 Feb 2009 14:54:38 +0000 |
parents | dfb7cb94c169 |
children | 711807b9155a |
files | IBBoard.csproj IBBoard.mdp |
diffstat | 2 files changed, 14 insertions(+), 90 deletions(-) [+] |
line wrap: on
line diff
--- a/IBBoard.csproj Mon Jan 26 20:30:03 2009 +0000 +++ b/IBBoard.csproj Tue Feb 17 14:54:38 2009 +0000 @@ -1,4 +1,5 @@ -<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> +<?xml version="1.0" encoding="utf-8"?> +<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <PropertyGroup> <ProjectType>Local</ProjectType> <ProductVersion>8.0.50727</ProductVersion> @@ -28,10 +29,8 @@ </UpgradeBackupLocation> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> - <OutputPath>C:\Documents and Settings\ibboard\My Documents\Visual Studio 2005\Projects\IBBoard\bin\Debug\</OutputPath> - <AllowUnsafeBlocks>false</AllowUnsafeBlocks> + <OutputPath>bin/Debug/</OutputPath> <BaseAddress>285212672</BaseAddress> - <CheckForOverflowUnderflow>false</CheckForOverflowUnderflow> <ConfigurationOverrideFile> </ConfigurationOverrideFile> <DefineConstants>DEBUG;TRACE</DefineConstants> @@ -39,36 +38,25 @@ </DocumentationFile> <DebugSymbols>true</DebugSymbols> <FileAlignment>4096</FileAlignment> - <NoStdLib>false</NoStdLib> - <NoWarn> - </NoWarn> <Optimize>false</Optimize> <RegisterForComInterop>false</RegisterForComInterop> <RemoveIntegerChecks>false</RemoveIntegerChecks> - <TreatWarningsAsErrors>false</TreatWarningsAsErrors> <WarningLevel>4</WarningLevel> <DebugType>full</DebugType> <ErrorReport>prompt</ErrorReport> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> <OutputPath>bin\Release\</OutputPath> - <AllowUnsafeBlocks>false</AllowUnsafeBlocks> <BaseAddress>285212672</BaseAddress> - <CheckForOverflowUnderflow>false</CheckForOverflowUnderflow> <ConfigurationOverrideFile> </ConfigurationOverrideFile> <DefineConstants>TRACE</DefineConstants> <DocumentationFile> </DocumentationFile> - <DebugSymbols>false</DebugSymbols> <FileAlignment>4096</FileAlignment> - <NoStdLib>false</NoStdLib> - <NoWarn> - </NoWarn> <Optimize>true</Optimize> <RegisterForComInterop>false</RegisterForComInterop> <RemoveIntegerChecks>false</RemoveIntegerChecks> - <TreatWarningsAsErrors>false</TreatWarningsAsErrors> <WarningLevel>4</WarningLevel> <DebugType>none</DebugType> <ErrorReport>prompt</ErrorReport> @@ -78,18 +66,10 @@ <SpecificVersion>False</SpecificVersion> <HintPath>libs\log4net.dll</HintPath> </Reference> - <Reference Include="System"> - <Name>System</Name> - </Reference> - <Reference Include="System.Data"> - <Name>System.Data</Name> - </Reference> - <Reference Include="System.Windows.Forms"> - <Name>System.Windows.Forms</Name> - </Reference> - <Reference Include="System.Xml"> - <Name>System.XML</Name> - </Reference> + <Reference Include="System" /> + <Reference Include="System.Data" /> + <Reference Include="System.Windows.Forms" /> + <Reference Include="System.Xml" /> </ItemGroup> <ItemGroup> <Compile Include="Arrays.cs"> @@ -115,8 +95,8 @@ <SubType>Code</SubType> </Compile> <Compile Include="IExtendedEnum.cs" /> - <Compile Include="io\InvalidFileException.cs" /> - <Compile Include="io\UnsupportedFileTypeException.cs" /> + <Compile Include="IO\InvalidFileException.cs" /> + <Compile Include="IO\UnsupportedFileTypeException.cs" /> <Compile Include="Lang\ITranslatable.cs" /> <Compile Include="Lang\StringManipulation.cs" /> <Compile Include="Lang\Translation.cs" /> @@ -156,4 +136,9 @@ <PostBuildEvent> </PostBuildEvent> </PropertyGroup> + <ItemGroup> + <None Include="COPYING.GPL" /> + <None Include="COPYING.LGPL" /> + <None Include="dtds\translation.dtd" /> + </ItemGroup> </Project> \ No newline at end of file
--- a/IBBoard.mdp Mon Jan 26 20:30:03 2009 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,61 +0,0 @@ -<Project name="IBBoard" fileversion="2.0" language="C#" DefaultNamespace="IBBoard" clr-version="Net_2_0" ctype="DotNetProject"> - <Configurations active="Debug"> - <Configuration name="Debug" ctype="DotNetProjectConfiguration"> - <Output directory="bin/Debug/" assembly="IBBoard" /> - <Build debugmode="True" target="Library" /> - <Execution runwithwarnings="False" consolepause="True" runtime="MsNet" clr-version="Net_2_0" /> - <CodeGeneration compiler="Mcs" warninglevel="4" optimize="True" unsafecodeallowed="False" generateoverflowchecks="True" generatexmldocumentation="False" ctype="CSharpCompilerParameters" /> - </Configuration> - <Configuration name="Release" ctype="DotNetProjectConfiguration"> - <Output directory="bin/Release/" assembly="IBBoard" /> - <Build debugmode="False" target="Library" /> - <Execution runwithwarnings="False" consolepause="True" runtime="MsNet" clr-version="Net_2_0" /> - <CodeGeneration compiler="Mcs" warninglevel="4" optimize="True" unsafecodeallowed="False" generateoverflowchecks="True" generatexmldocumentation="False" ctype="CSharpCompilerParameters" /> - </Configuration> - </Configurations> - <Contents> - <File name="Arrays.cs" subtype="Code" buildaction="Compile" /> - <File name="AssemblyInfo.cs" subtype="Code" buildaction="Compile" /> - <File name="IBBoard.cs" subtype="Code" buildaction="Compile" /> - <File name="Preferences.cs" subtype="Code" buildaction="Compile" /> - <File name="Commands/Command.cs" subtype="Code" buildaction="Compile" /> - <File name="Commands/CommandStack.cs" subtype="Code" buildaction="Compile" /> - <File name="CustomMath/Comparisons.cs" subtype="Code" buildaction="Compile" /> - <File name="Logging/TextFileLogger.cs" subtype="Code" buildaction="Compile" /> - <File name="Logging/Logger.cs" subtype="Code" buildaction="Compile" /> - <File name="Logging/SilentLogger.cs" subtype="Code" buildaction="Compile" /> - <File name="Xml/IBBXmlResolver.cs" subtype="Code" buildaction="Compile" /> - <File name="Constants.cs" subtype="Code" buildaction="Compile" /> - <File name="Logging/LogItem.cs" subtype="Code" buildaction="Compile" /> - <File name="Logging/FileLogger.cs" subtype="Code" buildaction="Compile" /> - <File name="Xml/IXmlElementName.cs" subtype="Code" buildaction="Compile" /> - <File name="IExtendedEnum.cs" subtype="Code" buildaction="Compile" /> - <File name="OperationFailedException.cs" subtype="Code" buildaction="Compile" /> - <File name="Xml/XmlParseException.cs" subtype="Code" buildaction="Compile" /> - <File name="IO" subtype="Directory" buildaction="Compile" /> - <File name="Lang" subtype="Directory" buildaction="Compile" /> - <File name="IO/InvalidFileException.cs" subtype="Code" buildaction="Compile" /> - <File name="Lang/ITranslatable.cs" subtype="Code" buildaction="Compile" /> - <File name="Lang/StringManipulation.cs" subtype="Code" buildaction="Compile" /> - <File name="Lang/Translation.cs" subtype="Code" buildaction="Compile" /> - <File name="IO/UnsupportedFileTypeException.cs" subtype="Code" buildaction="Compile" /> - <File name="UnixTimestamp.cs" subtype="Code" buildaction="Compile" /> - <File name="Logging/LogNotifier.cs" subtype="Code" buildaction="Compile" /> - <File name="Collections" subtype="Directory" buildaction="Compile" /> - <File name="Collections/SimpleSet.cs" subtype="Code" buildaction="Compile" /> - <File name="dtds" subtype="Directory" buildaction="Compile" /> - <File name="dtds/translation.dtd" subtype="Code" buildaction="Nothing" /> - <File name="Collections/DictionaryUtils.cs" subtype="Code" buildaction="Compile" /> - <File name="COPYING.GPL" subtype="Code" buildaction="Nothing" /> - <File name="COPYING.LGPL" subtype="Code" buildaction="Nothing" /> - <File name="CustomMath/NumberParser.cs" subtype="Code" buildaction="Compile" /> - </Contents> - <References> - <ProjectReference type="Gac" localcopy="True" refto="System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" /> - <ProjectReference type="Gac" localcopy="True" refto="System.Data, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" /> - <ProjectReference type="Gac" localcopy="True" refto="System.Xml, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" /> - <ProjectReference type="Gac" localcopy="True" refto="System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" /> - </References> - <GtkDesignInfo /> - <MonoDevelop.ChangeLogAddIn.ChangeLogInfo policy="UseParentPolicy" /> -</Project> \ No newline at end of file