Skip to content

Commit

Permalink
- v3.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
eben-roux committed Oct 21, 2015
1 parent e90944b commit e7b6174
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 10 deletions.
6 changes: 4 additions & 2 deletions .build/package.msbuild
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
</ItemGroup>

<Target Name="Build">
<MSBuild Projects="@(ProjectReference)" Targets="Rebuild" Properties="Configuration=Debug;Framework=%(Framework.Identity);OutputPath=$(MSBuildProjectDirectory)\deployment\debug\%(Framework.Identity)"/>
<MSBuild Projects="@(ProjectReference)" Targets="Rebuild" Properties="Configuration=Release;Framework=%(Framework.Identity);OutputPath=$(MSBuildProjectDirectory)\deployment\release\%(Framework.Identity)"/>
<MSBuild Projects="@(ProjectReference)" Targets="Rebuild" Properties="Configuration=Debug;Platform=AnyCPU;Framework=%(Framework.Identity);OutputPath=$(MSBuildProjectDirectory)\deployment\debug\%(Framework.Identity)"/>
<MSBuild Projects="@(ProjectReference)" Targets="Rebuild" Properties="Configuration=Release;Platform=AnyCPU;Framework=%(Framework.Identity);OutputPath=$(MSBuildProjectDirectory)\deployment\release\%(Framework.Identity)"/>
</Target>

<Target Name="Deploy">
Expand Down Expand Up @@ -50,5 +50,7 @@

<Exec Command="$(NuGetExecutablePath) pack $(DeploymentFolder)\nuget\package.nuspec -OutputDirectory $(DeploymentFolder)\nuget -NoPackageAnalysis" />
<Exec Command="$(NuGetExecutablePath) push $(DeploymentFolder)\nuget\$(PackageName).$(SemanticVersion).nupkg" Condition="$(Operation) != 'pack-only'" />
<Exec Command="git commit -a -m &quot;- v$(SemanticVersion)&quot;" />
<Exec Command="git push" />
</Target>
</Project>
4 changes: 2 additions & 2 deletions Shuttle.Core.Data.Tests/Shuttle.Core.Data.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@
<HintPath>..\packages\NUnit.2.6.4\lib\nunit.framework.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="Shuttle.Core.Infrastructure, Version=3.1.7.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\shuttle-core-infrastructure.3.1.7\lib\net40-full\Shuttle.Core.Infrastructure.dll</HintPath>
<Reference Include="Shuttle.Core.Infrastructure, Version=3.2.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\shuttle-core-infrastructure.3.2.0\lib\net40-full\Shuttle.Core.Infrastructure.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="System" />
Expand Down
2 changes: 1 addition & 1 deletion Shuttle.Core.Data.Tests/packages.config
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
<packages>
<package id="Moq" version="4.2.1507.0118" targetFramework="net35" requireReinstallation="True" />
<package id="NUnit" version="2.6.4" targetFramework="net35" />
<package id="shuttle-core-infrastructure" version="3.1.7" targetFramework="net40" />
<package id="shuttle-core-infrastructure" version="3.2.0" targetFramework="net40" />
</packages>
4 changes: 2 additions & 2 deletions Shuttle.Core.Data/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@
[assembly: AssemblyTitle("Shuttle.Core.Data for .NET Framework 4.5.1")]
#endif

[assembly: AssemblyVersion("3.2.0.0")]
[assembly: AssemblyVersion("3.2.1.0")]
[assembly: AssemblyCopyright("Copyright © Eben Roux 2010-2014")]
[assembly: AssemblyProduct("Shuttle.Core")]
[assembly: AssemblyCompany("Shuttle")]
[assembly: AssemblyConfiguration("Release")]
[assembly: AssemblyInformationalVersion("3.2.0")]
[assembly: AssemblyInformationalVersion("3.2.1")]
[assembly: ComVisible(false)]
4 changes: 2 additions & 2 deletions Shuttle.Core.Data/Shuttle.Core.Data.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@
<DefineConstants>$(DefineConstants);NET451FULL</DefineConstants>
</PropertyGroup>
<ItemGroup>
<Reference Include="Shuttle.Core.Infrastructure, Version=3.1.7.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\shuttle-core-infrastructure.3.1.7\lib\net40-full\Shuttle.Core.Infrastructure.dll</HintPath>
<Reference Include="Shuttle.Core.Infrastructure, Version=3.2.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\shuttle-core-infrastructure.3.2.0\lib\net40-full\Shuttle.Core.Infrastructure.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="System" />
Expand Down
2 changes: 1 addition & 1 deletion Shuttle.Core.Data/packages.config
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="shuttle-core-infrastructure" version="3.1.7" targetFramework="net40" />
<package id="shuttle-core-infrastructure" version="3.2.0" targetFramework="net40" />
<package id="shuttle-core-msbuild" version="1.1.6" targetFramework="net40" />
</packages>

0 comments on commit e7b6174

Please sign in to comment.