Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono-addins.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Mono.Addins.CecilReflector/AssemblyInfo.cs2
-rw-r--r--Mono.Addins.Gui/AssemblyInfo.cs2
-rw-r--r--Mono.Addins.MSBuild/AssemblyInfo.cs2
-rw-r--r--Mono.Addins.MSBuild/Makefile.am2
-rw-r--r--Mono.Addins.MSBuild/Mono.Addins.MSBuild.csproj24
-rw-r--r--Mono.Addins.Setup.nuspec4
-rw-r--r--Mono.Addins.Setup/AssemblyInfo.cs2
-rw-r--r--Mono.Addins.nuspec2
-rw-r--r--Mono.Addins/AssemblyInfo.cs2
-rw-r--r--Samples/HelloWorld/HelloWorld/HelloWorld.csproj12
-rw-r--r--Samples/HelloWorld/HelloWorldAddin/HelloWorldAddin.csproj13
-rw-r--r--Samples/HelloWorldWithManifest/HelloWorld/HelloWorld.csproj9
-rw-r--r--Samples/HelloWorldWithManifest/HelloWorldAddin/HelloWorldAddin.csproj10
-rw-r--r--Samples/TextEditor/TextEditor.CompilerService.CSharp/TextEditor.CompilerService.CSharp.csproj32
-rw-r--r--Samples/TextEditor/TextEditor.CompilerService/TextEditor.CompilerService.csproj34
-rw-r--r--Samples/TextEditor/TextEditor.Xml/TextEditor.Xml.csproj34
-rw-r--r--Samples/TextEditor/TextEditor/TextEditor.csproj9
-rw-r--r--Samples/TextEditor/TextEditorLib/TextEditorLib.csproj37
-rw-r--r--[-rwxr-xr-x]Samples/TextEditorSWF/DateAddin/DateAddin.csproj9
-rw-r--r--[-rwxr-xr-x]Samples/TextEditorSWF/SnippetsAddin/SnippetsAddin.csproj9
-rw-r--r--[-rwxr-xr-x]Samples/TextEditorSWF/TextEditorSWF/TextEditorSWF.csproj9
-rw-r--r--Samples/WriterService/WriterService.SampleExtender/WriterService.SampleExtender.csproj34
-rw-r--r--Samples/WriterService/WriterService/WriterService.csproj10
-rw-r--r--Samples/WriterService/WriterServiceHost/WriterServiceHost.csproj32
-rw-r--r--Test/UnitTests/UnitTests.csproj3
-rw-r--r--configure.ac6
26 files changed, 159 insertions, 185 deletions
diff --git a/Mono.Addins.CecilReflector/AssemblyInfo.cs b/Mono.Addins.CecilReflector/AssemblyInfo.cs
index be9053d..cf2c0fb 100644
--- a/Mono.Addins.CecilReflector/AssemblyInfo.cs
+++ b/Mono.Addins.CecilReflector/AssemblyInfo.cs
@@ -17,4 +17,4 @@ using System.Runtime.CompilerServices;
// You can specify all values by your own or you can build default build and revision
// numbers with the '*' character (the default):
-[assembly: AssemblyVersion("0.6.0.0")]
+[assembly: AssemblyVersion("1.0.0.0")]
diff --git a/Mono.Addins.Gui/AssemblyInfo.cs b/Mono.Addins.Gui/AssemblyInfo.cs
index e2e79eb..d89fc44 100644
--- a/Mono.Addins.Gui/AssemblyInfo.cs
+++ b/Mono.Addins.Gui/AssemblyInfo.cs
@@ -17,4 +17,4 @@ using System.Runtime.CompilerServices;
// You can specify all values by your own or you can build default build and revision
// numbers with the '*' character (the default):
-[assembly: AssemblyVersion("0.6.0.0")]
+[assembly: AssemblyVersion("1.0.0.0")]
diff --git a/Mono.Addins.MSBuild/AssemblyInfo.cs b/Mono.Addins.MSBuild/AssemblyInfo.cs
index 2f5262e..ab7d14d 100644
--- a/Mono.Addins.MSBuild/AssemblyInfo.cs
+++ b/Mono.Addins.MSBuild/AssemblyInfo.cs
@@ -42,7 +42,7 @@ using System.Runtime.CompilerServices;
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
// and "{Major}.{Minor}.{Build}.*" will update just the revision.
-[assembly: AssemblyVersion("0.6.0.0")]
+[assembly: AssemblyVersion("1.0.0.0")]
// The following attributes are used to specify the signing key for the assembly,
// if desired. See the Mono documentation for more information about signing.
diff --git a/Mono.Addins.MSBuild/Makefile.am b/Mono.Addins.MSBuild/Makefile.am
index 6b74000..ecbd538 100644
--- a/Mono.Addins.MSBuild/Makefile.am
+++ b/Mono.Addins.MSBuild/Makefile.am
@@ -28,7 +28,7 @@ EXTRAS = \
REFERENCES = \
-r:Microsoft.Build.Framework \
- -r:Microsoft.Build.Utilities \
+ -r:Microsoft.Build.Utilities.v3.5 \
-r:System
DLL_REFERENCES =
diff --git a/Mono.Addins.MSBuild/Mono.Addins.MSBuild.csproj b/Mono.Addins.MSBuild/Mono.Addins.MSBuild.csproj
index 070a556..487f817 100644
--- a/Mono.Addins.MSBuild/Mono.Addins.MSBuild.csproj
+++ b/Mono.Addins.MSBuild/Mono.Addins.MSBuild.csproj
@@ -12,27 +12,27 @@
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
- <DebugSymbols>true</DebugSymbols>
+ <DebugSymbols>True</DebugSymbols>
<DebugType>full</DebugType>
- <Optimize>false</Optimize>
+ <Optimize>False</Optimize>
<OutputPath>..\bin</OutputPath>
<DefineConstants>DEBUG</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
- <ConsolePause>false</ConsolePause>
+ <ConsolePause>False</ConsolePause>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>none</DebugType>
- <Optimize>false</Optimize>
+ <Optimize>False</Optimize>
<OutputPath>..\bin</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
- <ConsolePause>false</ConsolePause>
+ <ConsolePause>False</ConsolePause>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="Microsoft.Build.Framework" />
- <Reference Include="Microsoft.Build.Utilities" />
+ <Reference Include="Microsoft.Build.Utilities.v3.5" />
</ItemGroup>
<ItemGroup>
<Compile Include="AssemblyInfo.cs" />
@@ -42,14 +42,14 @@
<ProjectExtensions>
<MonoDevelop>
<Properties>
- <MonoDevelop.Autotools.MakefileInfo IntegrationEnabled="true" RelativeMakefileName="Makefile.am" BuildTargetName="" CleanTargetName="" SyncReferences="true" IsAutotoolsProject="true" RelativeConfigureInPath="..">
- <BuildFilesVar Sync="true" Name="FILES" />
+ <MonoDevelop.Autotools.MakefileInfo IntegrationEnabled="True" RelativeMakefileName="Makefile.am" BuildTargetName="" CleanTargetName="" SyncReferences="True" IsAutotoolsProject="True" RelativeConfigureInPath="..">
+ <BuildFilesVar Sync="True" Name="FILES" />
<DeployFilesVar />
- <ResourcesVar Sync="true" Name="RESOURCES" />
+ <ResourcesVar Sync="True" Name="RESOURCES" />
<OthersVar />
- <GacRefVar Sync="true" Name="REFERENCES" Prefix="-r:" />
- <AsmRefVar Sync="true" Name="REFERENCES" Prefix="-r:" />
- <ProjectRefVar Sync="true" Name="PROJECT_REFERENCES" />
+ <GacRefVar Sync="True" Name="REFERENCES" Prefix="-r:" />
+ <AsmRefVar Sync="True" Name="REFERENCES" Prefix="-r:" />
+ <ProjectRefVar Sync="True" Name="PROJECT_REFERENCES" />
</MonoDevelop.Autotools.MakefileInfo>
</Properties>
</MonoDevelop>
diff --git a/Mono.Addins.Setup.nuspec b/Mono.Addins.Setup.nuspec
index 0d3be21..888fc24 100644
--- a/Mono.Addins.Setup.nuspec
+++ b/Mono.Addins.Setup.nuspec
@@ -2,14 +2,14 @@
<package>
<metadata>
<id>Mono.Addins.Setup</id>
- <version>0.6.2</version>
+ <version>1.0</version>
<authors>Lluis Sanchez</authors>
<description>Mono.Addins is a framework for creating extensible applications, and for creating add-ins which extend applications. Mono.Addins.Setup provides an API for managing add-ins, creating add-in packages and publishing add-ins in on-line repositories.</description>
<language>en-US</language>
<projectUrl>http://monoaddins.codeplex.com</projectUrl>
<licenseUrl>http://monoaddins.codeplex.com/license</licenseUrl>
<dependencies>
- <dependency id="Mono.Addins" version="0.6.2" />
+ <dependency id="Mono.Addins" version="1.0" />
</dependencies>
</metadata>
<files>
diff --git a/Mono.Addins.Setup/AssemblyInfo.cs b/Mono.Addins.Setup/AssemblyInfo.cs
index 7db9b86..715e8bd 100644
--- a/Mono.Addins.Setup/AssemblyInfo.cs
+++ b/Mono.Addins.Setup/AssemblyInfo.cs
@@ -17,4 +17,4 @@ using System.Runtime.CompilerServices;
// You can specify all values by your own or you can build default build and revision
// numbers with the '*' character (the default):
-[assembly: AssemblyVersion("0.6.0.0")]
+[assembly: AssemblyVersion("1.0.0.0")]
diff --git a/Mono.Addins.nuspec b/Mono.Addins.nuspec
index 1874b58..d2ddfba 100644
--- a/Mono.Addins.nuspec
+++ b/Mono.Addins.nuspec
@@ -2,7 +2,7 @@
<package>
<metadata>
<id>Mono.Addins</id>
- <version>0.6.2</version>
+ <version>1.0</version>
<authors>Lluis Sanchez</authors>
<description>Mono.Addins is a framework for creating extensible applications, and for creating add-ins which extend applications.</description>
<language>en-US</language>
diff --git a/Mono.Addins/AssemblyInfo.cs b/Mono.Addins/AssemblyInfo.cs
index d14a879..3900ded 100644
--- a/Mono.Addins/AssemblyInfo.cs
+++ b/Mono.Addins/AssemblyInfo.cs
@@ -17,7 +17,7 @@ using System.Runtime.CompilerServices;
// You can specify all values by your own or you can build default build and revision
// numbers with the '*' character (the default):
-[assembly: AssemblyVersion("0.6.0.0")]
+[assembly: AssemblyVersion("1.0.0.0")]
[assembly: InternalsVisibleTo ("Mono.Addins.Setup, PublicKey=00240000048000009400000006020000002400005253413100" +
"0400000100010079159977d2d03a8e6bea7a2e74e8d1afcc93e8851974952bb480a12c9134474d04062447c37e0e68c080536fcf3c" +
diff --git a/Samples/HelloWorld/HelloWorld/HelloWorld.csproj b/Samples/HelloWorld/HelloWorld/HelloWorld.csproj
index 1e6bb44..0573afa 100644
--- a/Samples/HelloWorld/HelloWorld/HelloWorld.csproj
+++ b/Samples/HelloWorld/HelloWorld/HelloWorld.csproj
@@ -12,9 +12,9 @@
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
- <DebugSymbols>true</DebugSymbols>
+ <DebugSymbols>True</DebugSymbols>
<DebugType>full</DebugType>
- <Optimize>false</Optimize>
+ <Optimize>False</Optimize>
<OutputPath>..\bin</OutputPath>
<DefineConstants>DEBUG</DefineConstants>
<ErrorReport>prompt</ErrorReport>
@@ -23,7 +23,7 @@
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
<DebugType>none</DebugType>
- <Optimize>false</Optimize>
+ <Optimize>False</Optimize>
<OutputPath>..\bin</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
@@ -31,12 +31,10 @@
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
- <Reference Include="Mono.Addins, Version=0.6.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756">
- <SpecificVersion>False</SpecificVersion>
+ <Reference Include="Mono.Addins">
<HintPath>..\..\..\bin\Mono.Addins.dll</HintPath>
</Reference>
- <Reference Include="Mono.Addins.CecilReflector, Version=0.6.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756">
- <SpecificVersion>False</SpecificVersion>
+ <Reference Include="Mono.Addins.CecilReflector">
<HintPath>..\..\..\bin\Mono.Addins.CecilReflector.dll</HintPath>
</Reference>
</ItemGroup>
diff --git a/Samples/HelloWorld/HelloWorldAddin/HelloWorldAddin.csproj b/Samples/HelloWorld/HelloWorldAddin/HelloWorldAddin.csproj
index 22eca29..a01c735 100644
--- a/Samples/HelloWorld/HelloWorldAddin/HelloWorldAddin.csproj
+++ b/Samples/HelloWorld/HelloWorldAddin/HelloWorldAddin.csproj
@@ -12,27 +12,26 @@
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
- <DebugSymbols>true</DebugSymbols>
+ <DebugSymbols>True</DebugSymbols>
<DebugType>full</DebugType>
- <Optimize>false</Optimize>
+ <Optimize>False</Optimize>
<OutputPath>..\bin</OutputPath>
<DefineConstants>DEBUG</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
- <ConsolePause>false</ConsolePause>
+ <ConsolePause>False</ConsolePause>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>none</DebugType>
- <Optimize>false</Optimize>
+ <Optimize>False</Optimize>
<OutputPath>..\bin</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
- <ConsolePause>false</ConsolePause>
+ <ConsolePause>False</ConsolePause>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
- <Reference Include="Mono.Addins, Version=0.6.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756">
- <SpecificVersion>False</SpecificVersion>
+ <Reference Include="Mono.Addins">
<HintPath>..\..\..\bin\Mono.Addins.dll</HintPath>
</Reference>
</ItemGroup>
diff --git a/Samples/HelloWorldWithManifest/HelloWorld/HelloWorld.csproj b/Samples/HelloWorldWithManifest/HelloWorld/HelloWorld.csproj
index 3e236aa..1bf3a91 100644
--- a/Samples/HelloWorldWithManifest/HelloWorld/HelloWorld.csproj
+++ b/Samples/HelloWorldWithManifest/HelloWorld/HelloWorld.csproj
@@ -12,9 +12,9 @@
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
- <DebugSymbols>true</DebugSymbols>
+ <DebugSymbols>True</DebugSymbols>
<DebugType>full</DebugType>
- <Optimize>false</Optimize>
+ <Optimize>False</Optimize>
<OutputPath>..\bin</OutputPath>
<DefineConstants>DEBUG</DefineConstants>
<ErrorReport>prompt</ErrorReport>
@@ -23,7 +23,7 @@
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
<DebugType>none</DebugType>
- <Optimize>false</Optimize>
+ <Optimize>False</Optimize>
<OutputPath>..\bin</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
@@ -31,8 +31,7 @@
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
- <Reference Include="Mono.Addins, Version=0.6.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756">
- <SpecificVersion>False</SpecificVersion>
+ <Reference Include="Mono.Addins">
<HintPath>..\..\..\bin\Mono.Addins.dll</HintPath>
</Reference>
</ItemGroup>
diff --git a/Samples/HelloWorldWithManifest/HelloWorldAddin/HelloWorldAddin.csproj b/Samples/HelloWorldWithManifest/HelloWorldAddin/HelloWorldAddin.csproj
index b467293..9517d62 100644
--- a/Samples/HelloWorldWithManifest/HelloWorldAddin/HelloWorldAddin.csproj
+++ b/Samples/HelloWorldWithManifest/HelloWorldAddin/HelloWorldAddin.csproj
@@ -12,22 +12,22 @@
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
- <DebugSymbols>true</DebugSymbols>
+ <DebugSymbols>True</DebugSymbols>
<DebugType>full</DebugType>
- <Optimize>false</Optimize>
+ <Optimize>False</Optimize>
<OutputPath>..\bin</OutputPath>
<DefineConstants>DEBUG</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
- <ConsolePause>false</ConsolePause>
+ <ConsolePause>False</ConsolePause>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>none</DebugType>
- <Optimize>false</Optimize>
+ <Optimize>False</Optimize>
<OutputPath>..\bin</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
- <ConsolePause>false</ConsolePause>
+ <ConsolePause>False</ConsolePause>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
diff --git a/Samples/TextEditor/TextEditor.CompilerService.CSharp/TextEditor.CompilerService.CSharp.csproj b/Samples/TextEditor/TextEditor.CompilerService.CSharp/TextEditor.CompilerService.CSharp.csproj
index fac4582..47628ed 100644
--- a/Samples/TextEditor/TextEditor.CompilerService.CSharp/TextEditor.CompilerService.CSharp.csproj
+++ b/Samples/TextEditor/TextEditor.CompilerService.CSharp/TextEditor.CompilerService.CSharp.csproj
@@ -9,31 +9,29 @@
<AssemblyName>TextEditor.CompilerService.CSharp</AssemblyName>
<SchemaVersion>2.0</SchemaVersion>
<RootNamespace>TextEditor.CompilerService.CSharp</RootNamespace>
- <TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
- <DebugSymbols>true</DebugSymbols>
+ <DebugSymbols>True</DebugSymbols>
<DebugType>full</DebugType>
- <Optimize>true</Optimize>
+ <Optimize>True</Optimize>
<OutputPath>..\bin</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
- <CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
- <ConsolePause>false</ConsolePause>
+ <CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
+ <ConsolePause>False</ConsolePause>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>none</DebugType>
- <Optimize>true</Optimize>
+ <Optimize>True</Optimize>
<OutputPath>..\bin</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
- <CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
- <ConsolePause>false</ConsolePause>
+ <CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
+ <ConsolePause>False</ConsolePause>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
- <Reference Include="Mono.Addins, Version=0.6.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756">
- <SpecificVersion>False</SpecificVersion>
+ <Reference Include="Mono.Addins">
<HintPath>..\..\..\bin\Mono.Addins.dll</HintPath>
</Reference>
</ItemGroup>
@@ -51,14 +49,14 @@
<ProjectExtensions>
<MonoDevelop>
<Properties>
- <MonoDevelop.Autotools.MakefileInfo RelativeMakefileName="./Makefile.am" BuildTargetName="" CleanTargetName="" SyncReferences="true">
- <BuildFilesVar Sync="true" Name="FILES" />
- <DeployFilesVar Sync="true" Name="DATA_FILES" />
- <ResourcesVar Sync="true" Name="RESOURCES" />
+ <MonoDevelop.Autotools.MakefileInfo RelativeMakefileName="./Makefile.am" BuildTargetName="" CleanTargetName="" SyncReferences="True">
+ <BuildFilesVar Sync="True" Name="FILES" />
+ <DeployFilesVar Sync="True" Name="DATA_FILES" />
+ <ResourcesVar Sync="True" Name="RESOURCES" />
<OthersVar />
- <GacRefVar Sync="true" Name="REFERENCES" Prefix="-r:" />
- <AsmRefVar Sync="true" Name="DLL_REFERENCES" />
- <ProjectRefVar Sync="true" Name="PROJECT_REFERENCES" />
+ <GacRefVar Sync="True" Name="REFERENCES" Prefix="-r:" />
+ <AsmRefVar Sync="True" Name="DLL_REFERENCES" />
+ <ProjectRefVar Sync="True" Name="PROJECT_REFERENCES" />
</MonoDevelop.Autotools.MakefileInfo>
</Properties>
</MonoDevelop>
diff --git a/Samples/TextEditor/TextEditor.CompilerService/TextEditor.CompilerService.csproj b/Samples/TextEditor/TextEditor.CompilerService/TextEditor.CompilerService.csproj
index 982e15e..5fca5ac 100644
--- a/Samples/TextEditor/TextEditor.CompilerService/TextEditor.CompilerService.csproj
+++ b/Samples/TextEditor/TextEditor.CompilerService/TextEditor.CompilerService.csproj
@@ -9,26 +9,25 @@
<AssemblyName>TextEditor.CompilerService</AssemblyName>
<SchemaVersion>2.0</SchemaVersion>
<RootNamespace>TextEditor.CompilerService</RootNamespace>
- <TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
- <DebugSymbols>true</DebugSymbols>
+ <DebugSymbols>True</DebugSymbols>
<DebugType>full</DebugType>
- <Optimize>true</Optimize>
+ <Optimize>True</Optimize>
<OutputPath>..\bin</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
- <CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
- <ConsolePause>false</ConsolePause>
+ <CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
+ <ConsolePause>False</ConsolePause>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>none</DebugType>
- <Optimize>true</Optimize>
+ <Optimize>True</Optimize>
<OutputPath>..\bin</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
- <CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
- <ConsolePause>false</ConsolePause>
+ <CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
+ <ConsolePause>False</ConsolePause>
</PropertyGroup>
<ItemGroup>
<Reference Include="pango-sharp, Version=2.8.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f">
@@ -45,8 +44,7 @@
</Reference>
<Reference Include="System" />
<Reference Include="Mono.Posix" />
- <Reference Include="Mono.Addins, Version=0.6.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756">
- <SpecificVersion>False</SpecificVersion>
+ <Reference Include="Mono.Addins">
<HintPath>..\..\..\bin\Mono.Addins.dll</HintPath>
</Reference>
</ItemGroup>
@@ -71,15 +69,15 @@
<ProjectExtensions>
<MonoDevelop>
<Properties>
- <Deployment.LinuxDeployData scriptName="texteditor.compilerservice" generatePcFile="false" />
- <MonoDevelop.Autotools.MakefileInfo RelativeMakefileName="./Makefile.am" BuildTargetName="" CleanTargetName="" SyncReferences="true">
- <BuildFilesVar Sync="true" Name="FILES" />
- <DeployFilesVar Sync="true" Name="DATA_FILES" />
- <ResourcesVar Sync="true" Name="RESOURCES" />
+ <Deployment.LinuxDeployData scriptName="texteditor.compilerservice" generatePcFile="False" />
+ <MonoDevelop.Autotools.MakefileInfo RelativeMakefileName="./Makefile.am" BuildTargetName="" CleanTargetName="" SyncReferences="True">
+ <BuildFilesVar Sync="True" Name="FILES" />
+ <DeployFilesVar Sync="True" Name="DATA_FILES" />
+ <ResourcesVar Sync="True" Name="RESOURCES" />
<OthersVar />
- <GacRefVar Sync="true" Name="REFERENCES" Prefix="-r:" />
- <AsmRefVar Sync="true" Name="DLL_REFERENCES" />
- <ProjectRefVar Sync="true" Name="PROJECT_REFERENCES" />
+ <GacRefVar Sync="True" Name="REFERENCES" Prefix="-r:" />
+ <AsmRefVar Sync="True" Name="DLL_REFERENCES" />
+ <ProjectRefVar Sync="True" Name="PROJECT_REFERENCES" />
</MonoDevelop.Autotools.MakefileInfo>
</Properties>
</MonoDevelop>
diff --git a/Samples/TextEditor/TextEditor.Xml/TextEditor.Xml.csproj b/Samples/TextEditor/TextEditor.Xml/TextEditor.Xml.csproj
index 665fd66..06ce80e 100644
--- a/Samples/TextEditor/TextEditor.Xml/TextEditor.Xml.csproj
+++ b/Samples/TextEditor/TextEditor.Xml/TextEditor.Xml.csproj
@@ -9,26 +9,25 @@
<AssemblyName>XmlAddin</AssemblyName>
<SchemaVersion>2.0</SchemaVersion>
<RootNamespace>TextEditor.Xml</RootNamespace>
- <TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
- <DebugSymbols>true</DebugSymbols>
+ <DebugSymbols>True</DebugSymbols>
<DebugType>full</DebugType>
- <Optimize>true</Optimize>
+ <Optimize>True</Optimize>
<OutputPath>..\bin</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
- <CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
- <ConsolePause>false</ConsolePause>
+ <CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
+ <ConsolePause>False</ConsolePause>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>none</DebugType>
- <Optimize>true</Optimize>
+ <Optimize>True</Optimize>
<OutputPath>..\bin</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
- <CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
- <ConsolePause>false</ConsolePause>
+ <CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
+ <ConsolePause>False</ConsolePause>
</PropertyGroup>
<ItemGroup>
<Reference Include="pango-sharp, Version=2.8.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f">
@@ -46,8 +45,7 @@
<Reference Include="System" />
<Reference Include="System.Xml" />
<Reference Include="Mono.Posix" />
- <Reference Include="Mono.Addins, Version=0.6.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756">
- <SpecificVersion>False</SpecificVersion>
+ <Reference Include="Mono.Addins">
<HintPath>..\..\..\bin\Mono.Addins.dll</HintPath>
</Reference>
</ItemGroup>
@@ -73,15 +71,15 @@
<ProjectExtensions>
<MonoDevelop>
<Properties>
- <Deployment.LinuxDeployData scriptName="texteditor.xml" generatePcFile="false" />
- <MonoDevelop.Autotools.MakefileInfo RelativeMakefileName="./Makefile.am" BuildTargetName="" CleanTargetName="" SyncReferences="true">
- <BuildFilesVar Sync="true" Name="FILES" />
- <DeployFilesVar Sync="true" Name="DATA_FILES" />
- <ResourcesVar Sync="true" Name="RESOURCES" />
+ <Deployment.LinuxDeployData scriptName="texteditor.xml" generatePcFile="False" />
+ <MonoDevelop.Autotools.MakefileInfo RelativeMakefileName="./Makefile.am" BuildTargetName="" CleanTargetName="" SyncReferences="True">
+ <BuildFilesVar Sync="True" Name="FILES" />
+ <DeployFilesVar Sync="True" Name="DATA_FILES" />
+ <ResourcesVar Sync="True" Name="RESOURCES" />
<OthersVar />
- <GacRefVar Sync="true" Name="REFERENCES" Prefix="-r:" />
- <AsmRefVar Sync="true" Name="DLL_REFERENCES" />
- <ProjectRefVar Sync="true" Name="PROJECT_REFERENCES" />
+ <GacRefVar Sync="True" Name="REFERENCES" Prefix="-r:" />
+ <AsmRefVar Sync="True" Name="DLL_REFERENCES" />
+ <ProjectRefVar Sync="True" Name="PROJECT_REFERENCES" />
</MonoDevelop.Autotools.MakefileInfo>
</Properties>
</MonoDevelop>
diff --git a/Samples/TextEditor/TextEditor/TextEditor.csproj b/Samples/TextEditor/TextEditor/TextEditor.csproj
index 708c979..47e17bf 100644
--- a/Samples/TextEditor/TextEditor/TextEditor.csproj
+++ b/Samples/TextEditor/TextEditor/TextEditor.csproj
@@ -12,9 +12,9 @@
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
- <DebugSymbols>true</DebugSymbols>
+ <DebugSymbols>True</DebugSymbols>
<DebugType>full</DebugType>
- <Optimize>false</Optimize>
+ <Optimize>False</Optimize>
<OutputPath>..\bin</OutputPath>
<DefineConstants>DEBUG</DefineConstants>
<ErrorReport>prompt</ErrorReport>
@@ -23,7 +23,7 @@
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
<DebugType>none</DebugType>
- <Optimize>false</Optimize>
+ <Optimize>False</Optimize>
<OutputPath>..\bin</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
@@ -34,8 +34,7 @@
<Reference Include="gtk-sharp, Version=2.12.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />
<Reference Include="gdk-sharp, Version=2.12.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f" />
<Reference Include="Mono.Posix" />
- <Reference Include="Mono.Addins, Version=0.6.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756">
- <SpecificVersion>False</SpecificVersion>
+ <Reference Include="Mono.Addins">
<HintPath>..\..\..\bin\Mono.Addins.dll</HintPath>
</Reference>
</ItemGroup>
diff --git a/Samples/TextEditor/TextEditorLib/TextEditorLib.csproj b/Samples/TextEditor/TextEditorLib/TextEditorLib.csproj
index 8a7c14a..cf4fe91 100644
--- a/Samples/TextEditor/TextEditorLib/TextEditorLib.csproj
+++ b/Samples/TextEditor/TextEditorLib/TextEditorLib.csproj
@@ -9,26 +9,25 @@
<AssemblyName>TextEditorLib</AssemblyName>
<SchemaVersion>2.0</SchemaVersion>
<RootNamespace>TextEditorLib</RootNamespace>
- <TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
- <DebugSymbols>true</DebugSymbols>
+ <DebugSymbols>True</DebugSymbols>
<DebugType>full</DebugType>
- <Optimize>true</Optimize>
+ <Optimize>True</Optimize>
<OutputPath>..\bin</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
- <CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
- <ConsolePause>false</ConsolePause>
+ <CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
+ <ConsolePause>False</ConsolePause>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>none</DebugType>
- <Optimize>true</Optimize>
+ <Optimize>True</Optimize>
<OutputPath>..\bin</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
- <CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
- <ConsolePause>false</ConsolePause>
+ <CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
+ <ConsolePause>False</ConsolePause>
</PropertyGroup>
<ItemGroup>
<Reference Include="pango-sharp, Version=2.8.0.0, Culture=neutral, PublicKeyToken=35e10195dab3c99f">
@@ -45,12 +44,10 @@
</Reference>
<Reference Include="System" />
<Reference Include="Mono.Posix" />
- <Reference Include="Mono.Addins, Version=0.6.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756">
- <SpecificVersion>False</SpecificVersion>
+ <Reference Include="Mono.Addins">
<HintPath>..\..\..\bin\Mono.Addins.dll</HintPath>
</Reference>
- <Reference Include="Mono.Addins.Gui, Version=0.6.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756">
- <SpecificVersion>False</SpecificVersion>
+ <Reference Include="Mono.Addins.Gui">
<HintPath>..\..\..\bin\Mono.Addins.Gui.dll</HintPath>
</Reference>
</ItemGroup>
@@ -101,15 +98,15 @@
<ProjectExtensions>
<MonoDevelop>
<Properties>
- <Deployment.LinuxDeployData scriptName="texteditorlib" generatePcFile="false" />
- <MonoDevelop.Autotools.MakefileInfo RelativeMakefileName="./Makefile.am" BuildTargetName="" CleanTargetName="" SyncReferences="true">
- <BuildFilesVar Sync="true" Name="FILES" />
- <DeployFilesVar Sync="true" Name="DATA_FILES" />
- <ResourcesVar Sync="true" Name="RESOURCES" />
+ <Deployment.LinuxDeployData scriptName="texteditorlib" generatePcFile="False" />
+ <MonoDevelop.Autotools.MakefileInfo RelativeMakefileName="./Makefile.am" BuildTargetName="" CleanTargetName="" SyncReferences="True">
+ <BuildFilesVar Sync="True" Name="FILES" />
+ <DeployFilesVar Sync="True" Name="DATA_FILES" />
+ <ResourcesVar Sync="True" Name="RESOURCES" />
<OthersVar />
- <GacRefVar Sync="true" Name="REFERENCES" Prefix="-r:" />
- <AsmRefVar Sync="true" Name="DLL_REFERENCES" />
- <ProjectRefVar Sync="true" Name="PROJECT_REFERENCES" />
+ <GacRefVar Sync="True" Name="REFERENCES" Prefix="-r:" />
+ <AsmRefVar Sync="True" Name="DLL_REFERENCES" />
+ <ProjectRefVar Sync="True" Name="PROJECT_REFERENCES" />
</MonoDevelop.Autotools.MakefileInfo>
</Properties>
</MonoDevelop>
diff --git a/Samples/TextEditorSWF/DateAddin/DateAddin.csproj b/Samples/TextEditorSWF/DateAddin/DateAddin.csproj
index bb81deb..41c53e1 100755..100644
--- a/Samples/TextEditorSWF/DateAddin/DateAddin.csproj
+++ b/Samples/TextEditorSWF/DateAddin/DateAddin.csproj
@@ -14,9 +14,9 @@
<FileAlignment>512</FileAlignment>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
- <DebugSymbols>true</DebugSymbols>
+ <DebugSymbols>True</DebugSymbols>
<DebugType>full</DebugType>
- <Optimize>false</Optimize>
+ <Optimize>False</Optimize>
<OutputPath>..\TextEditorSWF\bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
@@ -24,7 +24,7 @@
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
- <Optimize>true</Optimize>
+ <Optimize>True</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
@@ -44,8 +44,7 @@
</Reference>
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
- <Reference Include="Mono.Addins, Version=0.6.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756">
- <SpecificVersion>False</SpecificVersion>
+ <Reference Include="Mono.Addins">
<HintPath>..\..\..\bin\Mono.Addins.dll</HintPath>
</Reference>
</ItemGroup>
diff --git a/Samples/TextEditorSWF/SnippetsAddin/SnippetsAddin.csproj b/Samples/TextEditorSWF/SnippetsAddin/SnippetsAddin.csproj
index 3bae633..644cdd8 100755..100644
--- a/Samples/TextEditorSWF/SnippetsAddin/SnippetsAddin.csproj
+++ b/Samples/TextEditorSWF/SnippetsAddin/SnippetsAddin.csproj
@@ -14,9 +14,9 @@
<FileAlignment>512</FileAlignment>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
- <DebugSymbols>true</DebugSymbols>
+ <DebugSymbols>True</DebugSymbols>
<DebugType>full</DebugType>
- <Optimize>false</Optimize>
+ <Optimize>False</Optimize>
<OutputPath>..\TextEditorSWF\bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
@@ -24,7 +24,7 @@
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
- <Optimize>true</Optimize>
+ <Optimize>True</Optimize>
<OutputPath>..\TextEditorSWF\bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
@@ -44,8 +44,7 @@
</Reference>
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
- <Reference Include="Mono.Addins, Version=0.6.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756">
- <SpecificVersion>False</SpecificVersion>
+ <Reference Include="Mono.Addins">
<HintPath>..\..\..\bin\Mono.Addins.dll</HintPath>
</Reference>
</ItemGroup>
diff --git a/Samples/TextEditorSWF/TextEditorSWF/TextEditorSWF.csproj b/Samples/TextEditorSWF/TextEditorSWF/TextEditorSWF.csproj
index e5c8ffe..ac51c8b 100755..100644
--- a/Samples/TextEditorSWF/TextEditorSWF/TextEditorSWF.csproj
+++ b/Samples/TextEditorSWF/TextEditorSWF/TextEditorSWF.csproj
@@ -14,9 +14,9 @@
<FileAlignment>512</FileAlignment>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
- <DebugSymbols>true</DebugSymbols>
+ <DebugSymbols>True</DebugSymbols>
<DebugType>full</DebugType>
- <Optimize>false</Optimize>
+ <Optimize>False</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
@@ -24,7 +24,7 @@
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
- <Optimize>true</Optimize>
+ <Optimize>True</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
@@ -45,8 +45,7 @@
<Reference Include="System.Drawing" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Xml" />
- <Reference Include="Mono.Addins, Version=0.6.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756">
- <SpecificVersion>False</SpecificVersion>
+ <Reference Include="Mono.Addins">
<HintPath>..\..\..\bin\Mono.Addins.dll</HintPath>
</Reference>
</ItemGroup>
diff --git a/Samples/WriterService/WriterService.SampleExtender/WriterService.SampleExtender.csproj b/Samples/WriterService/WriterService.SampleExtender/WriterService.SampleExtender.csproj
index 6694b06..8f3035f 100644
--- a/Samples/WriterService/WriterService.SampleExtender/WriterService.SampleExtender.csproj
+++ b/Samples/WriterService/WriterService.SampleExtender/WriterService.SampleExtender.csproj
@@ -9,31 +9,29 @@
<AssemblyName>SampleExtender</AssemblyName>
<SchemaVersion>2.0</SchemaVersion>
<RootNamespace>WriterService.SampleExtender</RootNamespace>
- <TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
- <DebugSymbols>true</DebugSymbols>
+ <DebugSymbols>True</DebugSymbols>
<DebugType>full</DebugType>
- <Optimize>true</Optimize>
+ <Optimize>True</Optimize>
<OutputPath>..\WriterService\bin</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
- <CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
- <ConsolePause>false</ConsolePause>
+ <CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
+ <ConsolePause>False</ConsolePause>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>none</DebugType>
- <Optimize>true</Optimize>
+ <Optimize>True</Optimize>
<OutputPath>..\WriterService\bin</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
- <CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
- <ConsolePause>false</ConsolePause>
+ <CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
+ <ConsolePause>False</ConsolePause>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
- <Reference Include="Mono.Addins, Version=0.6.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756">
- <SpecificVersion>False</SpecificVersion>
+ <Reference Include="Mono.Addins">
<HintPath>..\..\..\bin\Mono.Addins.dll</HintPath>
</Reference>
</ItemGroup>
@@ -56,15 +54,15 @@
<ProjectExtensions>
<MonoDevelop>
<Properties>
- <Deployment.LinuxDeployData scriptName="writerservice.sampleextender" generatePcFile="false" />
- <MonoDevelop.Autotools.MakefileInfo RelativeMakefileName="./Makefile.am" BuildTargetName="" CleanTargetName="" SyncReferences="true">
- <BuildFilesVar Sync="true" Name="FILES" />
- <DeployFilesVar Sync="true" Name="DATA_FILES" />
- <ResourcesVar Sync="true" Name="RESOURCES" />
+ <Deployment.LinuxDeployData scriptName="writerservice.sampleextender" generatePcFile="False" />
+ <MonoDevelop.Autotools.MakefileInfo RelativeMakefileName="./Makefile.am" BuildTargetName="" CleanTargetName="" SyncReferences="True">
+ <BuildFilesVar Sync="True" Name="FILES" />
+ <DeployFilesVar Sync="True" Name="DATA_FILES" />
+ <ResourcesVar Sync="True" Name="RESOURCES" />
<OthersVar />
- <GacRefVar Sync="true" Name="REFERENCES" Prefix="-r:" />
- <AsmRefVar Sync="true" Name="DLL_REFERENCES" />
- <ProjectRefVar Sync="true" Name="PROJECT_REFERENCES" />
+ <GacRefVar Sync="True" Name="REFERENCES" Prefix="-r:" />
+ <AsmRefVar Sync="True" Name="DLL_REFERENCES" />
+ <ProjectRefVar Sync="True" Name="PROJECT_REFERENCES" />
</MonoDevelop.Autotools.MakefileInfo>
</Properties>
</MonoDevelop>
diff --git a/Samples/WriterService/WriterService/WriterService.csproj b/Samples/WriterService/WriterService/WriterService.csproj
index 13e8284..5cb3c28 100644
--- a/Samples/WriterService/WriterService/WriterService.csproj
+++ b/Samples/WriterService/WriterService/WriterService.csproj
@@ -9,12 +9,11 @@
<OutputType>Library</OutputType>
<RootNamespace>WriterService</RootNamespace>
<AssemblyName>WriterService</AssemblyName>
- <TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
- <DebugSymbols>true</DebugSymbols>
+ <DebugSymbols>True</DebugSymbols>
<DebugType>full</DebugType>
- <Optimize>false</Optimize>
+ <Optimize>False</Optimize>
<OutputPath>bin</OutputPath>
<DefineConstants>DEBUG</DefineConstants>
<ErrorReport>prompt</ErrorReport>
@@ -23,7 +22,7 @@
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
<DebugType>none</DebugType>
- <Optimize>false</Optimize>
+ <Optimize>False</Optimize>
<OutputPath>bin</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
@@ -31,8 +30,7 @@
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
- <Reference Include="Mono.Addins, Version=0.6.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756">
- <SpecificVersion>False</SpecificVersion>
+ <Reference Include="Mono.Addins">
<HintPath>..\..\..\bin\Mono.Addins.dll</HintPath>
</Reference>
</ItemGroup>
diff --git a/Samples/WriterService/WriterServiceHost/WriterServiceHost.csproj b/Samples/WriterService/WriterServiceHost/WriterServiceHost.csproj
index 41e5112..e1ef7e3 100644
--- a/Samples/WriterService/WriterServiceHost/WriterServiceHost.csproj
+++ b/Samples/WriterService/WriterServiceHost/WriterServiceHost.csproj
@@ -9,30 +9,28 @@
<AssemblyName>SampleAddinHost</AssemblyName>
<SchemaVersion>2.0</SchemaVersion>
<RootNamespace>WriterServiceHost</RootNamespace>
- <TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
- <DebugSymbols>true</DebugSymbols>
+ <DebugSymbols>True</DebugSymbols>
<DebugType>full</DebugType>
- <Optimize>true</Optimize>
+ <Optimize>True</Optimize>
<OutputPath>..\WriterService\bin</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
- <GenerateDocumentation>true</GenerateDocumentation>
- <CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
+ <GenerateDocumentation>True</GenerateDocumentation>
+ <CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>none</DebugType>
- <Optimize>true</Optimize>
+ <Optimize>True</Optimize>
<OutputPath>..\WriterService\bin</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
- <CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
+ <CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
- <Reference Include="Mono.Addins, Version=0.6.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756">
- <SpecificVersion>False</SpecificVersion>
+ <Reference Include="Mono.Addins">
<HintPath>..\..\..\bin\Mono.Addins.dll</HintPath>
</Reference>
</ItemGroup>
@@ -50,15 +48,15 @@
<ProjectExtensions>
<MonoDevelop>
<Properties>
- <Deployment.LinuxDeployData generateScript="false" scriptName="writerservicehost" />
- <MonoDevelop.Autotools.MakefileInfo RelativeMakefileName="./Makefile.am" BuildTargetName="" CleanTargetName="" SyncReferences="true">
- <BuildFilesVar Sync="true" Name="FILES" />
- <DeployFilesVar Sync="true" Name="DATA_FILES" />
- <ResourcesVar Sync="true" Name="RESOURCES" />
+ <Deployment.LinuxDeployData generateScript="False" scriptName="writerservicehost" />
+ <MonoDevelop.Autotools.MakefileInfo RelativeMakefileName="./Makefile.am" BuildTargetName="" CleanTargetName="" SyncReferences="True">
+ <BuildFilesVar Sync="True" Name="FILES" />
+ <DeployFilesVar Sync="True" Name="DATA_FILES" />
+ <ResourcesVar Sync="True" Name="RESOURCES" />
<OthersVar />
- <GacRefVar Sync="true" Name="REFERENCES" Prefix="-r:" />
- <AsmRefVar Sync="true" Name="DLL_REFERENCES" />
- <ProjectRefVar Sync="true" Name="PROJECT_REFERENCES" />
+ <GacRefVar Sync="True" Name="REFERENCES" Prefix="-r:" />
+ <AsmRefVar Sync="True" Name="DLL_REFERENCES" />
+ <ProjectRefVar Sync="True" Name="PROJECT_REFERENCES" />
</MonoDevelop.Autotools.MakefileInfo>
</Properties>
</MonoDevelop>
diff --git a/Test/UnitTests/UnitTests.csproj b/Test/UnitTests/UnitTests.csproj
index b249227..9c5105f 100644
--- a/Test/UnitTests/UnitTests.csproj
+++ b/Test/UnitTests/UnitTests.csproj
@@ -31,9 +31,6 @@
<Reference Include="nunit.framework, Version=2.4.8.0, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77" />
<Reference Include="System" />
<Reference Include="System.Xml" />
- <Reference Include="nunit.core, Version=2.4.8.0, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77" />
- <Reference Include="nunit.core.interfaces, Version=2.4.8.0, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77" />
- <Reference Include="nunit.framework, Version=2.4.8.0, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77" />
<Reference Include="System.Core" />
</ItemGroup>
<ItemGroup>
diff --git a/configure.ac b/configure.ac
index a550bdf..8a05636 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,7 +1,7 @@
dnl Warning: This is an automatically generated file, do not edit!
dnl Process this file with autoconf to produce a configure script.
AC_PREREQ([2.54])
-AC_INIT([mono-addins], [0.6.2])
+AC_INIT([mono-addins], [1.0])
AM_INIT_AUTOMAKE([foreign tar-ustar])
AM_MAINTAINER_MODE
@@ -11,9 +11,9 @@ if test "x$PKG_CONFIG" = "xno"; then
AC_MSG_ERROR([You need to install pkg-config])
fi
-API_VERSION=0.6.0.0
+API_VERSION=1.0.0.0
AC_SUBST(API_VERSION)
-POLICY_VERSIONS="0.2 0.3 0.4 0.5"
+POLICY_VERSIONS="0.2 0.3 0.4 0.5 0.6"
AC_SUBST(POLICY_VERSIONS)
AC_PROG_INSTALL