Skip to content

Commit

Permalink
reference source projects instead of packages
Browse files Browse the repository at this point in the history
  • Loading branch information
mythz committed Feb 4, 2019
1 parent c8facee commit 12a0c33
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 9 deletions.
8 changes: 0 additions & 8 deletions tests/Check.ServiceInterface/Check.ServiceInterface.csproj
Expand Up @@ -31,14 +31,6 @@
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="ServiceStack.Common, Version=5.0.0.0, Culture=neutral, PublicKeyToken=02c12cbda47e6587">
<HintPath>..\..\src\packages\ServiceStack.Common.5.4.1\lib\net45\ServiceStack.Common.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="ServiceStack.Interfaces, Version=5.0.0.0, Culture=neutral, PublicKeyToken=02c12cbda47e6587">
<HintPath>..\..\src\packages\ServiceStack.Interfaces.5.4.1\lib\net45\ServiceStack.Interfaces.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="ServiceStack.OrmLite, Version=5.0.0.0, Culture=neutral, PublicKeyToken=02c12cbda47e6587">
<HintPath>..\..\src\packages\ServiceStack.OrmLite.5.4.1\lib\net45\ServiceStack.OrmLite.dll</HintPath>
<Private>True</Private>
Expand Down
3 changes: 2 additions & 1 deletion tests/CheckWebCore/Startup.cs
Expand Up @@ -50,7 +50,8 @@ public class AppHost : AppHostBase
// Configure your AppHost with the necessary configuration and dependencies your App needs
public override void Configure(Container container)
{
Plugins.Add(new TemplatePagesFeature()); // enable server-side rendering, see: http://templates.servicestack.net
// enable server-side rendering, see: http://templates.servicestack.net
Plugins.Add(new TemplatePagesFeature());

if (Config.DebugMode)
{
Expand Down

0 comments on commit 12a0c33

Please sign in to comment.