Skip to content

Commit 331fe57

Browse files
committed
use nuget for TableStorage.Abstractions
1 parent a5fb3fe commit 331fe57

File tree

4 files changed

+9
-20
lines changed

4 files changed

+9
-20
lines changed

src/TableStorage.Abstractions.POCO.Tests/TableStorage.Abstractions.POCO.Tests.csproj

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -111,11 +111,14 @@
111111
</Reference>
112112
<Reference Include="System.Windows" />
113113
<Reference Include="System.Windows.Forms" />
114+
<Reference Include="TableStorage.Abstractions, Version=2.2.0.0, Culture=neutral, processorArchitecture=MSIL">
115+
<HintPath>..\packages\TableStorage.Abstractions.2.2.0\lib\net46\TableStorage.Abstractions.dll</HintPath>
116+
</Reference>
114117
<Reference Include="TableStorage.Abstractions.TableEntityConverters, Version=1.1.4.0, Culture=neutral, processorArchitecture=MSIL">
115118
<HintPath>..\packages\TableStorage.Abstractions.TableEntityConverters.1.1.4\lib\net462\TableStorage.Abstractions.TableEntityConverters.dll</HintPath>
116119
</Reference>
117-
<Reference Include="Useful.Extensions, Version=2.2.0.0, Culture=neutral, processorArchitecture=MSIL">
118-
<HintPath>..\packages\Useful.Extensions.2.2.0\lib\net461\Useful.Extensions.dll</HintPath>
120+
<Reference Include="Useful.Extensions, Version=2.3.0.0, Culture=neutral, processorArchitecture=MSIL">
121+
<HintPath>..\packages\Useful.Extensions.2.3.0\lib\net461\Useful.Extensions.dll</HintPath>
119122
</Reference>
120123
<Reference Include="WindowsBase" />
121124
</ItemGroup>
@@ -135,10 +138,6 @@
135138
<Project>{3f3329e7-6482-42bd-9d9d-fa6053ac7dce}</Project>
136139
<Name>TableStorage.Abstractions.POCO</Name>
137140
</ProjectReference>
138-
<ProjectReference Include="..\TableStorage.Abstractions\TableStorage.Abstractions.csproj">
139-
<Project>{d48617c8-e044-409c-a881-c3bd77975ec9}</Project>
140-
<Name>TableStorage.Abstractions</Name>
141-
</ProjectReference>
142141
</ItemGroup>
143142
<Import Project="$(VSToolsPath)\TeamTest\Microsoft.TestTools.targets" Condition="Exists('$(VSToolsPath)\TeamTest\Microsoft.TestTools.targets')" />
144143
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />

src/TableStorage.Abstractions.POCO.Tests/packages.config

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@
2626
<package id="System.Spatial" version="5.8.4" targetFramework="net462" />
2727
<package id="System.Threading.Tasks.Extensions" version="4.5.1" targetFramework="net462" />
2828
<package id="System.ValueTuple" version="4.5.0" targetFramework="net462" />
29+
<package id="TableStorage.Abstractions" version="2.2.0" targetFramework="net462" />
2930
<package id="TableStorage.Abstractions.TableEntityConverters" version="1.1.4" targetFramework="net462" />
30-
<package id="Useful.Extensions" version="2.2.0" targetFramework="net462" />
31+
<package id="Useful.Extensions" version="2.3.0" targetFramework="net462" />
3132
<package id="WindowsAzure.Storage" version="9.3.3" targetFramework="net462" />
3233
</packages>

src/TableStorage.Abstractions.POCO.sln

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,7 @@ VisualStudioVersion = 15.0.26730.12
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TableStorage.Abstractions.POCO.Tests", "TableStorage.Abstractions.POCO.Tests\TableStorage.Abstractions.POCO.Tests.csproj", "{3DED78B4-7F47-480C-B2F7-DA569D14C2EC}"
77
EndProject
8-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TableStorage.Abstractions.POCO", "TableStorage.Abstractions.POCO\TableStorage.Abstractions.POCO.csproj", "{3F3329E7-6482-42BD-9D9D-FA6053AC7DCE}"
9-
EndProject
10-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TableStorage.Abstractions", "TableStorage.Abstractions\TableStorage.Abstractions.csproj", "{D48617C8-E044-409C-A881-C3BD77975EC9}"
8+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TableStorage.Abstractions.POCO", "TableStorage.Abstractions.POCO\TableStorage.Abstractions.POCO.csproj", "{3F3329E7-6482-42BD-9D9D-FA6053AC7DCE}"
119
EndProject
1210
Global
1311
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -23,10 +21,6 @@ Global
2321
{3F3329E7-6482-42BD-9D9D-FA6053AC7DCE}.Debug|Any CPU.Build.0 = Debug|Any CPU
2422
{3F3329E7-6482-42BD-9D9D-FA6053AC7DCE}.Release|Any CPU.ActiveCfg = Release|Any CPU
2523
{3F3329E7-6482-42BD-9D9D-FA6053AC7DCE}.Release|Any CPU.Build.0 = Release|Any CPU
26-
{D48617C8-E044-409C-A881-C3BD77975EC9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
27-
{D48617C8-E044-409C-A881-C3BD77975EC9}.Debug|Any CPU.Build.0 = Debug|Any CPU
28-
{D48617C8-E044-409C-A881-C3BD77975EC9}.Release|Any CPU.ActiveCfg = Release|Any CPU
29-
{D48617C8-E044-409C-A881-C3BD77975EC9}.Release|Any CPU.Build.0 = Release|Any CPU
3024
EndGlobalSection
3125
GlobalSection(SolutionProperties) = preSolution
3226
HideSolutionNode = FALSE

src/TableStorage.Abstractions.POCO/TableStorage.Abstractions.POCO.csproj

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,8 @@ The library will convert simple properties to fields in Azure Table Storage. Com
2424
</PropertyGroup>
2525

2626
<ItemGroup>
27-
<PackageReference Include="System.Reactive" Version="4.1.2" />
27+
<PackageReference Include="TableStorage.Abstractions" Version="2.2.0" />
2828
<PackageReference Include="TableStorage.Abstractions.TableEntityConverters" Version="1.1.4" />
29-
<PackageReference Include="Useful.Extensions" Version="2.2.0" />
30-
</ItemGroup>
31-
32-
<ItemGroup>
33-
<ProjectReference Include="..\TableStorage.Abstractions\TableStorage.Abstractions.csproj" />
3429
</ItemGroup>
3530

3631
</Project>

0 commit comments

Comments
 (0)