Skip to content

Commit

Permalink
Add x64 Sqlite to RazorRockstars.Console.Files
Browse files Browse the repository at this point in the history
  • Loading branch information
mythz committed Mar 19, 2013
1 parent 29f3919 commit 60c89a9
Show file tree
Hide file tree
Showing 10 changed files with 12 additions and 21 deletions.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
1 change: 0 additions & 1 deletion src/packages/repositories.config
@@ -1,6 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<repositories>
<repository path="..\..\..\..\Users\mythz\Downloads\WebApplication1\WebApplication1\packages.config" />
<repository path="..\..\tests\RazorRockstars.Console.Files\packages.config" />
<repository path="..\..\tests\RazorRockstars.Web\packages.config" />
<repository path="..\..\tests\ServiceStack.RazorNancyTests\packages.config" />
Expand Down
Expand Up @@ -83,6 +83,7 @@
<None Include="App.config">
<SubType>Designer</SubType>
</None>
<None Include="packages.config" />
<None Include="TypedModelNoController.cshtml">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
Expand Down Expand Up @@ -128,14 +129,9 @@
<None Include="default.cshtml">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="packages.config" />
<None Include="Views\Shared\RazorPartial.cshtml">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<Content Include="..\..\lib\tests\sqlite3.dll">
<Link>sqlite3.dll</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<None Include="Views\Shared\_Layout.shtml">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
Expand Down
@@ -1,10 +1,12 @@
@inherits ViewPage<List<Rockstar>>

<div id="sidebar">
<h4>Razor Partials with Model</h4>
@foreach (var rockstar in Model) {
<li>@rockstar.FirstName - @rockstar.LastName (<a href="?Age=@rockstar.Age">@rockstar.Age</a>)</li>
}
</div>

@inherits ViewPage<List<Rockstar>>

<div id="sidebar">
<h4>Razor Partials with Model</h4>
@foreach (var rockstar in Model) {
<li>@rockstar.FirstName - @rockstar.LastName (<a href="?Age=@rockstar.Age">@rockstar.Age</a>)</li>
}
</div>

PathInfo: <b>@base.Request.PathInfo</b>

<!--view:RazorPartialModel.cshtml-->
6 changes: 0 additions & 6 deletions tests/RazorRockstars.Console.Files/packages.config
@@ -1,10 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="ServiceStack" version="3.9.2" />
<package id="ServiceStack.Common" version="3.9.0" />
<package id="ServiceStack.OrmLite.Sqlite.Mono" version="3.9.3" />
<package id="ServiceStack.OrmLite.SqlServer" version="3.9.2" />
<package id="ServiceStack.Redis" version="3.9.0" />
<package id="ServiceStack.Text" version="3.9.2" />
<package id="System.Data.SQLite.x64" version="1.0.84.0" targetFramework="net40" />
</packages>

0 comments on commit 60c89a9

Please sign in to comment.