Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for VS Express friendly solution #7

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added PusherRESTDotNet.Tests/Libs/Rhino.Mocks.dll
Binary file not shown.
5,413 changes: 5,413 additions & 0 deletions PusherRESTDotNet.Tests/Libs/Rhino.Mocks.xml

Large diffs are not rendered by default.

Binary file added PusherRESTDotNet.Tests/Libs/nunit.framework.dll
Binary file not shown.
9,803 changes: 9,803 additions & 0 deletions PusherRESTDotNet.Tests/Libs/nunit.framework.xml

Large diffs are not rendered by default.

16 changes: 12 additions & 4 deletions PusherRESTDotNet.Tests/PusherRESTDotNet.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,13 @@
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<ItemGroup>
<Reference Include="nunit.framework">
<HintPath>..\lib\nunit.framework.dll</HintPath>
<Reference Include="nunit.framework, Version=2.5.0.9122, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>Libs\nunit.framework.dll</HintPath>
</Reference>
<Reference Include="Rhino.Mocks">
<HintPath>..\lib\Rhino.Mocks.dll</HintPath>
<Reference Include="Rhino.Mocks, Version=3.6.0.0, Culture=neutral, PublicKeyToken=0b3305902db7183f, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>Libs\Rhino.Mocks.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Configuration" />
Expand Down Expand Up @@ -100,6 +102,12 @@
<Name>PusherRESTDotNet</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<Content Include="Libs\nunit.framework.dll" />
<Content Include="Libs\nunit.framework.xml" />
<Content Include="Libs\Rhino.Mocks.dll" />
<Content Include="Libs\Rhino.Mocks.xml" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
Expand Down
8 changes: 1 addition & 7 deletions PusherRESTDotNet.sln
Original file line number Diff line number Diff line change
@@ -1,16 +1,10 @@

Microsoft Visual Studio Solution File, Format Version 11.00
# Visual Studio 2010
# Visual Web Developer Express 2010
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PusherRESTDotNet", "PusherRESTDotNet\PusherRESTDotNet.csproj", "{FEDAD44D-208E-4F99-BE08-6C1257B59D4A}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PusherRESTDotNet.Tests", "PusherRESTDotNet.Tests\PusherRESTDotNet.Tests.csproj", "{29ADB209-999D-4A86-A006-01609B6B670D}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Files", "Files", "{13FCFB53-1898-4AE9-B229-F917B8F52DB2}"
ProjectSection(SolutionItems) = preProject
PusherRESTDotNet\PusherRESTDotNet.nuspec = PusherRESTDotNet\PusherRESTDotNet.nuspec
README.md = README.md
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down
Binary file added PusherRESTDotNet/Libs/Newtonsoft.Json.Net35.dll
Binary file not shown.
Binary file added PusherRESTDotNet/Libs/Newtonsoft.Json.Net35.pdb
Binary file not shown.
6,845 changes: 6,845 additions & 0 deletions PusherRESTDotNet/Libs/Newtonsoft.Json.Net35.xml

Large diffs are not rendered by default.

5 changes: 4 additions & 1 deletion PusherRESTDotNet/PusherRESTDotNet.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
</PropertyGroup>
<ItemGroup>
<Reference Include="Newtonsoft.Json.Net35">
<HintPath>..\packages\Newtonsoft.Json.4.0.2\lib\net35\Newtonsoft.Json.Net35.dll</HintPath>
<HintPath>Libs\Newtonsoft.Json.Net35.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
Expand Down Expand Up @@ -94,6 +94,9 @@
<ItemGroup>
<None Include="packages.config" />
</ItemGroup>
<ItemGroup>
<Folder Include="Libs\" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
Expand Down