Skip to content

Commit

Permalink
Merge pull request #12 from maldworth/update-packages
Browse files Browse the repository at this point in the history
With .NET Core 2.1 release, updated References to stable version
  • Loading branch information
acarteas authored Jun 4, 2018
2 parents 8828ae0 + 9bf13fa commit 6f9b86c
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 12 deletions.
7 changes: 3 additions & 4 deletions src/FileCache.Signed/FileCache.Signed.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,8 @@
<AssemblyOriginatorKeyFile>..\..\fckey.snk</AssemblyOriginatorKeyFile>
<SignAssembly>True</SignAssembly>
<PublicSign Condition="'$(OS)' != 'Windows_NT'">true</PublicSign>
<UpdateVersionProperties>false</UpdateVersionProperties>
<Version>2.1.1</Version>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<UpdateVersionProperties>true</UpdateVersionProperties>
<Version>0.0.0</Version>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\FileCache\FileCache.cs" Link="FileCache.cs" />
Expand All @@ -37,6 +36,6 @@
<Reference Include="System.Runtime.Caching" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' ">
<PackageReference Include="System.Runtime.Caching" Version="4.5.0-preview2-26406-04" />
<PackageReference Include="System.Runtime.Caching" Version="4.5.0" />
</ItemGroup>
</Project>
8 changes: 4 additions & 4 deletions src/FileCache.UnitTests/FileCache.UnitTests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.7.0" />
<PackageReference Include="MSTest.TestAdapter" Version="1.2.1" />
<PackageReference Include="MSTest.TestFramework" Version="1.2.1" />
<PackageReference Include="FluentAssertions" Version="5.2.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.7.2" />
<PackageReference Include="MSTest.TestAdapter" Version="1.3.1" />
<PackageReference Include="MSTest.TestFramework" Version="1.3.1" />
<PackageReference Include="FluentAssertions" Version="5.3.2" />

</ItemGroup>

Expand Down
7 changes: 3 additions & 4 deletions src/FileCache/FileCache.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,8 @@
<Authors>Adam Carter</Authors>
<Description>FileCache is a concrete implementation of the .NET System.Runtime.Caching.ObjectCache that uses the local filesystem as the target location.</Description>
<Copyright>Copyright (c) 2012, 2013, 2017 Adam Carter (http://adam-carter.com)</Copyright>
<UpdateVersionProperties>false</UpdateVersionProperties>
<Version>2.1.1</Version>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<UpdateVersionProperties>true</UpdateVersionProperties>
<Version>0.0.0</Version>
<Company>Adam Carter</Company>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net40|AnyCPU'">
Expand All @@ -30,6 +29,6 @@
<Reference Include="System.Runtime.Caching" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' ">
<PackageReference Include="System.Runtime.Caching" Version="4.5.0-preview2-26406-04" />
<PackageReference Include="System.Runtime.Caching" Version="4.5.0" />
</ItemGroup>
</Project>

0 comments on commit 6f9b86c

Please sign in to comment.