Skip to content

Commit

Permalink
bumping version to 0.2.2, fixed a couple of things building sample pr…
Browse files Browse the repository at this point in the history
…oject

git-svn-id: http://solrnet.googlecode.com/svn/trunk@362 66c3f25c-543c-0410-ae2e-6f2ca0bd8c61
  • Loading branch information
mausch committed May 8, 2009
1 parent de3487d commit fd4e375
Show file tree
Hide file tree
Showing 6 changed files with 37 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
[assembly: ComVisible(false)]
[assembly: CLSCompliant(true)]
[assembly: Guid("6688f9b4-5f2d-4fd6-aafc-3a81c84a69f1")]
[assembly: AssemblyVersion("0.2.1")]
[assembly: AssemblyFileVersion("0.2.1")]
[assembly: AssemblyVersion("0.2.2")]
[assembly: AssemblyFileVersion("0.2.2")]


4 changes: 2 additions & 2 deletions Ninject.Integration.SolrNet/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
[assembly: ComVisible(false)]
[assembly: CLSCompliant(true)]
[assembly: Guid("6688f9b4-5f2d-4fd6-aafc-3a81c84a69f1")]
[assembly: AssemblyVersion("0.2.1")]
[assembly: AssemblyFileVersion("0.2.1")]
[assembly: AssemblyVersion("0.2.2")]
[assembly: AssemblyFileVersion("0.2.2")]


4 changes: 2 additions & 2 deletions SolrNet.DSL/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
[assembly: ComVisible(false)]
[assembly: CLSCompliant(true)]
[assembly: Guid("6688f9b4-5f2d-4fd6-aafc-3a81c84a69f1")]
[assembly: AssemblyVersion("0.2.1")]
[assembly: AssemblyFileVersion("0.2.1")]
[assembly: AssemblyVersion("0.2.2")]
[assembly: AssemblyFileVersion("0.2.2")]


27 changes: 25 additions & 2 deletions SolrNet.proj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Build" ToolsVersion="3.5">
<PropertyGroup>
<Version>0.2.1</Version>
<Version>0.2.2</Version>
<MSBuildCommunityTasksPath>$(MSBuildProjectDirectory)\tools\MSBuild.Community.Tasks</MSBuildCommunityTasksPath>
<ExtensionTasksPath>$(MSBuildProjectDirectory)\tools\MSBuild.ExtensionPack\</ExtensionTasksPath>
<MergedOutputPath>$(MSBuildProjectDirectory)\merged</MergedOutputPath>
Expand Down Expand Up @@ -139,6 +139,10 @@
</xsl:template>
<xsl:template match="/*[local-name()='Project']/*[local-name()='ItemGroup']/*[local-name()='Reference'][starts-with(@Include, 'log4net')]"/>
<xsl:template match="/*[local-name()='Project']/*[local-name()='ItemGroup']/*[local-name()='Reference'][starts-with(@Include, 'Microsoft.Practices.ServiceLocation')]"/>
<xsl:template match="/*[local-name()='Project']/*[local-name()='ItemGroup']/*[local-name()='Reference'][starts-with(@Include, 'SolrNet')]"/>
<xsl:template match="/*[local-name()='Project']/*[local-name()='ItemGroup']/*[local-name()='Reference'][starts-with(@Include, 'System.Web.Abstractions')]"/>
<xsl:template match="/*[local-name()='Project']/*[local-name()='ItemGroup']/*[local-name()='Reference'][starts-with(@Include, 'System.Web.Mvc')]"/>
<xsl:template match="/*[local-name()='Project']/*[local-name()='ItemGroup']/*[local-name()='Reference'][starts-with(@Include, 'System.Web.Routing')]"/>
<xsl:template match="/*[local-name()='Project']/*[local-name()='ItemGroup']/*[local-name()='ProjectReference']"/>
<xsl:template match="/*[local-name()='Project']/*[local-name()='ItemGroup'][1]">
<ItemGroup>
Expand All @@ -154,6 +158,18 @@
<SpecificVersion>False</SpecificVersion>
<HintPath>lib\SolrNet.dll</HintPath>
</Reference>
<Reference Include="System.Web.Abstractions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>lib\System.Web.Abstractions.dll</HintPath>
</Reference>
<Reference Include="System.Web.Mvc, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>lib\System.Web.Mvc.dll</HintPath>
</Reference>
<Reference Include="System.Web.Routing, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>lib\System.Web.Routing.dll</HintPath>
</Reference>
<xsl:apply-templates select="node() | @*" />
</ItemGroup>
</xsl:template>
Expand All @@ -171,7 +187,7 @@
<SvnExport RepositoryPath="$(MSBuildProjectDirectory)\SampleSolrApp" LocalPath="$(BuildOutputPath)\SampleSolrApp"/>
<MakeDir Directories="$(BuildOutputPath)\SampleSolrApp\lib" ContinueOnError="true"/>
<ItemGroup>
<SampleSolrAppBin Include="$(MSBuildProjectDirectory)\SampleSolrApp\bin\*.dll" Exclude="**\SampleSolrApp.dll"/>
<SampleSolrAppBin Include="$(MSBuildProjectDirectory)\SampleSolrApp\bin\*.dll"/>
</ItemGroup>
<Copy SourceFiles="@(SampleSolrAppBin)" DestinationFolder="$(BuildOutputPath)\SampleSolrApp\lib" />
<XmlTask TaskAction="TransForm"
Expand All @@ -181,6 +197,13 @@
Indent="true"/>
<MSBuild Projects="$(BuildOutputPath)\SampleSolrApp\SampleSolrApp.sln" StopOnFirstFailure="true" ToolsVersion="3.5" BuildInParallel="true"/>
<RemoveDir Directories="$(BuildOutputPath)\SampleSolrApp\obj"/>
<Delete Files="$(BuildOutputPath)\SampleSolrApp\lib\SampleSolrApp.dll"/>
<Delete Files="$(BuildOutputPath)\SampleSolrApp\lib\Ninject.Core.dll"/>
<Delete Files="$(BuildOutputPath)\SampleSolrApp\lib\Castle.MicroKernel.dll"/>
<Delete Files="$(BuildOutputPath)\SampleSolrApp\lib\Castle.Core.dll"/>
<Delete Files="$(BuildOutputPath)\SampleSolrApp\bin\Ninject.Core.dll"/>
<Delete Files="$(BuildOutputPath)\SampleSolrApp\bin\Castle.MicroKernel.dll"/>
<Delete Files="$(BuildOutputPath)\SampleSolrApp\bin\Castle.Core.dll"/>
<CreateItem Include="$(BuildOutputPath)\**\*.*">
<Output ItemName="AllOutputExceptZip" TaskParameter="Include"/>
</CreateItem>
Expand Down
4 changes: 2 additions & 2 deletions SolrNet/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
[assembly: ComVisible(false)]
[assembly: CLSCompliant(true)]
[assembly: Guid("6688f9b4-5f2d-4fd6-aafc-3a81c84a69f1")]
[assembly: AssemblyVersion("0.2.1")]
[assembly: AssemblyFileVersion("0.2.1")]
[assembly: AssemblyVersion("0.2.2")]
[assembly: AssemblyFileVersion("0.2.2")]


6 changes: 4 additions & 2 deletions sandcastle.shfbproj
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,14 @@
<DocumentationSource sourceFile="merged\SolrNet.xml" />
</DocumentationSources>
<SandcastlePath>tools\Sandcastle\</SandcastlePath>
<HelpTitle>SolrNet 0.2.1</HelpTitle>
<FooterText>SolrNet 0.2.1</FooterText>
<HelpTitle>SolrNet 0.2.2</HelpTitle>
<FooterText>SolrNet 0.2.2</FooterText>
<ApiFilter>
<Filter entryType="Namespace" fullName="Rhino.Commons" isExposed="False" xmlns="" />
<Filter entryType="Namespace" fullName="Rhino.Commons.LocalDataImpl" isExposed="False" xmlns="" />
</ApiFilter>
<MissingTags>Parameter, Returns, AutoDocumentCtors, TypeParameter</MissingTags>
<ShowFeedbackControl>False</ShowFeedbackControl>
</PropertyGroup>
<!-- There are no properties for these two groups but they need to appear in
order for Visual Studio to perform the build. -->
Expand Down

0 comments on commit fd4e375

Please sign in to comment.