Skip to content

Commit

Permalink
Fixed NuGet specifications
Browse files Browse the repository at this point in the history
  • Loading branch information
wahidshalaly committed Jun 27, 2014
1 parent 70c0fe6 commit 232727e
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 26 deletions.
1 change: 0 additions & 1 deletion src/ReliableUnitOfWork.SqlAzure.sln
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
..\LICENSE = ..\LICENSE
..\README.md = ..\README.md
..\reliable_uow.ico = ..\reliable_uow.ico
..\ReliableUnitOfWork.SqlAzure.nuspec = ..\ReliableUnitOfWork.SqlAzure.nuspec
EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ReliableUnitOfWork.SqlAzure.UnitTests", "ReliableUnitOfWork.SqlAzure.UnitTests\ReliableUnitOfWork.SqlAzure.UnitTests.csproj", "{EA7B64E9-55F3-4987-BCAF-86B03C985009}"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,9 @@
<ItemGroup>
<None Include="App.config" />
<None Include="packages.config" />
<None Include="ReliableUnitOfWork.SqlAzure.nuspec">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
<?xml version="1.0"?>
<package >
<metadata>
<id>ReliableUnitOfWork.SqlAzure</id>
<version>$version</version>
<title>Reliable UnitOfWork for Microsoft Azure SQL Database</title>
<authors>Wahid Shalaly</authors>
<owners>Wahid Shalaly</owners>
<licenseUrl>https://raw.github.com/waheedsayed/ReliableUnitOfWork.SqlAzure/master/LICENSE</licenseUrl>
<projectUrl>https://github.com/waheedsayed/ReliableUnitOfWork.SqlAzure</projectUrl>
<iconUrl>https://raw.github.com/waheedsayed/ReliableUnitOfWork.SqlAzure/master/reliable_uow.png</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>A light-weight implementation of UnitOfWork pattern for SqlAzure based on EF6 to benefit from SqlAzureExecutionStrategy.
This implementation provide a way to share a UnitOfWork, and hence DbContext, between different parts of the application, not only repositories.</description>
<copyright>Copyright © 2014</copyright>
<tags>unitofwork sqlazure ef6</tags>
<dependencies>
<dependency id="Autofac" version="3.5.0" />
<dependency id="EntityFramework" version="6.1.0" />
<dependency id="Serilog" version="1.3.0" />
</dependencies>
</metadata>
<files>
<file src="src\ReliableUnitOfWork.SqlAzure\bin\Release\ReliableUnitOfWork.SqlAzure.dll" target="lib\net45" />
</files>
<?xml version="1.0"?>
<package >
<metadata>
<id>ReliableUnitOfWork.SqlAzure</id>
<title>Reliable UnitOfWork for Microsoft Azure SQL Database</title>
<version>$version$</version>
<authors>Wahid Shalaly</authors>
<owners>Wahid Shalaly</owners>
<licenseUrl>https://raw.github.com/waheedsayed/ReliableUnitOfWork.SqlAzure/master/LICENSE</licenseUrl>
<projectUrl>https://github.com/waheedsayed/ReliableUnitOfWork.SqlAzure</projectUrl>
<iconUrl>https://raw.github.com/waheedsayed/ReliableUnitOfWork.SqlAzure/master/reliable_uow.png</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>A light-weight implementation of UnitOfWork pattern for SqlAzure based on EF6 to benefit from SqlAzureExecutionStrategy.
This implementation provide a way to share a UnitOfWork, and hence DbContext, between different parts of the application, not only repositories.</description>
<copyright>Copyright © 2014</copyright>
<tags>unitofwork sqlazure ef6</tags>
<dependencies>
<dependency id="Autofac" version="3.5.0" />
<dependency id="EntityFramework" version="6.1.0" />
<dependency id="Serilog" version="1.3.0" />
</dependencies>
</metadata>
<files>
<file src="bin\$configuration$\ReliableUnitOfWork.SqlAzure.dll" target="lib\net45" />
</files>
</package>

0 comments on commit 232727e

Please sign in to comment.