Skip to content

Commit 42ee1dc

Browse files
committed
Added latest dlls .proj tweaks
1 parent ff42325 commit 42ee1dc

13 files changed

+80
-65
lines changed

lib/RazorEngine.dll

55.5 KB
Binary file not shown.

lib/ServiceStack.Common.dll

512 Bytes
Binary file not shown.

lib/ServiceStack.Interfaces.dll

0 Bytes
Binary file not shown.

lib/ServiceStack.Razor.dll

6.5 KB
Binary file not shown.

lib/ServiceStack.RazorEngine.dll

60.5 KB
Binary file not shown.
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?xml version="1.0"?>
2+
<configuration>
3+
<runtime>
4+
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
5+
<dependentAssembly>
6+
<assemblyIdentity name="System.Web" publicKeyToken="B03F5F7F11D50A3A" culture="neutral"/>
7+
<bindingRedirect oldVersion="0.0.0.0-4.0.0.0" newVersion="4.0.0.0"/>
8+
</dependentAssembly>
9+
</assemblyBinding>
10+
</runtime>
11+
</configuration>

lib/ServiceStack.ServiceInterface.dll

512 Bytes
Binary file not shown.

lib/ServiceStack.dll

512 Bytes
Binary file not shown.

src/RazorRockstars/Mono/RazorRockstars.Console.Mono/RazorRockstars.Console.Mono.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
66
<ProductVersion>8.0.30703</ProductVersion>
77
<SchemaVersion>2.0</SchemaVersion>
8-
<ProjectGuid>{30BA8DF9-4698-4051-B8E9-84C81E330E24}</ProjectGuid>
8+
<ProjectGuid>{ED32DF44-0DAC-4222-8DD3-B785D983BE4F}</ProjectGuid>
99
<OutputType>Exe</OutputType>
1010
<AppDesignerFolder>Properties</AppDesignerFolder>
1111
<RootNamespace>RazorRockstars.Console</RootNamespace>
Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
<?xml version="1.0"?>
2-
<configuration>
3-
<runtime>
4-
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
5-
<dependentAssembly>
6-
<assemblyIdentity name="System.Web" publicKeyToken="B03F5F7F11D50A3A" culture="neutral"/>
7-
<bindingRedirect oldVersion="0.0.0.0-4.0.0.0" newVersion="4.0.0.0"/>
8-
</dependentAssembly>
9-
</assemblyBinding>
10-
</runtime>
11-
</configuration>
1+
<?xml version="1.0"?>
2+
<configuration>
3+
<runtime>
4+
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
5+
<dependentAssembly>
6+
<assemblyIdentity name="System.Web" publicKeyToken="B03F5F7F11D50A3A" culture="neutral"/>
7+
<bindingRedirect oldVersion="0.0.0.0-4.0.0.0" newVersion="4.0.0.0"/>
8+
</dependentAssembly>
9+
</assemblyBinding>
10+
</runtime>
11+
</configuration>

src/RazorRockstars/RazorRockstars.Console/AppHost.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
using ServiceStack.Common;
55
using ServiceStack.DataAnnotations;
66
using ServiceStack.OrmLite;
7-
using ServiceStack.OrmLite.Sqlite;
87
using ServiceStack.Razor;
98
using ServiceStack.ServiceHost;
109
using ServiceStack.ServiceInterface;
@@ -22,7 +21,7 @@ public override void Configure(Container container)
2221
Plugins.Add(new RazorFormat());
2322

2423
container.Register<IDbConnectionFactory>(
25-
new OrmLiteConnectionFactory(":memory:", false, SqliteOrmLiteDialectProvider.Instance));
24+
new OrmLiteConnectionFactory(":memory:", false, SqliteDialect.Provider));
2625

2726
using (var db = container.Resolve<IDbConnectionFactory>().OpenDbConnection())
2827
{

src/RazorRockstars/RazorRockstars.Console/RazorRockstars.Console.csproj

Lines changed: 28 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -36,26 +36,40 @@
3636
<Reference Include="Mono.Data.Sqlite">
3737
<HintPath>..\packages\ServiceStack.OrmLite.Sqlite.Mono.3.9.3\lib\net35\Mono.Data.Sqlite.dll</HintPath>
3838
</Reference>
39-
<Reference Include="ServiceStack">
40-
<HintPath>..\packages\ServiceStack.3.9.2\lib\net40\ServiceStack.dll</HintPath>
39+
<Reference Include="ServiceStack, Version=3.9.4.0, Culture=neutral, processorArchitecture=MSIL">
40+
<SpecificVersion>False</SpecificVersion>
41+
<HintPath>..\..\..\lib\ServiceStack.dll</HintPath>
4142
</Reference>
42-
<Reference Include="ServiceStack.Common">
43-
<HintPath>..\packages\ServiceStack.Common.3.9.0\lib\net35\ServiceStack.Common.dll</HintPath>
43+
<Reference Include="ServiceStack.Common, Version=3.9.4.0, Culture=neutral, processorArchitecture=MSIL">
44+
<SpecificVersion>False</SpecificVersion>
45+
<HintPath>..\..\..\lib\ServiceStack.Common.dll</HintPath>
4446
</Reference>
45-
<Reference Include="ServiceStack.Interfaces">
46-
<HintPath>..\packages\ServiceStack.Common.3.9.0\lib\net35\ServiceStack.Interfaces.dll</HintPath>
47+
<Reference Include="ServiceStack.Interfaces, Version=3.9.0.0, Culture=neutral, processorArchitecture=MSIL">
48+
<SpecificVersion>False</SpecificVersion>
49+
<HintPath>..\..\..\lib\ServiceStack.Interfaces.dll</HintPath>
4750
</Reference>
48-
<Reference Include="ServiceStack.OrmLite.Sqlite">
49-
<HintPath>..\packages\ServiceStack.OrmLite.Sqlite.Mono.3.9.3\lib\net35\ServiceStack.OrmLite.Sqlite.dll</HintPath>
51+
<Reference Include="ServiceStack.OrmLite, Version=3.9.4.0, Culture=neutral, processorArchitecture=MSIL">
52+
<SpecificVersion>False</SpecificVersion>
53+
<HintPath>..\..\..\lib\ServiceStack.OrmLite.dll</HintPath>
5054
</Reference>
51-
<Reference Include="ServiceStack.Razor">
52-
<HintPath>..\packages\ServiceStack.3.9.2\lib\net40\ServiceStack.Razor.dll</HintPath>
55+
<Reference Include="ServiceStack.OrmLite.Sqlite, Version=1.0.0.0, Culture=neutral, processorArchitecture=x86">
56+
<SpecificVersion>False</SpecificVersion>
57+
<HintPath>..\..\..\lib\ServiceStack.OrmLite.Sqlite.dll</HintPath>
5358
</Reference>
54-
<Reference Include="ServiceStack.Redis">
55-
<HintPath>..\packages\ServiceStack.Redis.3.9.0\lib\net35\ServiceStack.Redis.dll</HintPath>
59+
<Reference Include="ServiceStack.Razor, Version=2.1.4609.1517, Culture=neutral, processorArchitecture=MSIL">
60+
<SpecificVersion>False</SpecificVersion>
61+
<HintPath>..\..\..\lib\ServiceStack.Razor.dll</HintPath>
5662
</Reference>
57-
<Reference Include="ServiceStack.ServiceInterface">
58-
<HintPath>..\packages\ServiceStack.3.9.2\lib\net40\ServiceStack.ServiceInterface.dll</HintPath>
63+
<Reference Include="ServiceStack.RazorEngine">
64+
<HintPath>..\..\..\lib\ServiceStack.RazorEngine.dll</HintPath>
65+
</Reference>
66+
<Reference Include="ServiceStack.ServiceInterface, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
67+
<SpecificVersion>False</SpecificVersion>
68+
<HintPath>..\..\..\lib\ServiceStack.ServiceInterface.dll</HintPath>
69+
</Reference>
70+
<Reference Include="ServiceStack.Text, Version=3.9.4.0, Culture=neutral, processorArchitecture=MSIL">
71+
<SpecificVersion>False</SpecificVersion>
72+
<HintPath>..\..\..\lib\ServiceStack.Text.dll</HintPath>
5973
</Reference>
6074
<Reference Include="System" />
6175
<Reference Include="System.Core" />
@@ -65,15 +79,6 @@
6579
<Reference Include="Microsoft.CSharp" />
6680
<Reference Include="System.Data" />
6781
<Reference Include="System.Xml" />
68-
<Reference Include="ServiceStack.OrmLite, Version=3.9.2.0, Culture=neutral, PublicKeyToken=null">
69-
<HintPath>..\packages\ServiceStack.OrmLite.Sqlite.Mono.3.9.3\lib\net35\ServiceStack.OrmLite.dll</HintPath>
70-
</Reference>
71-
<Reference Include="ServiceStack.OrmLite.SqlServer, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null">
72-
<HintPath>..\packages\ServiceStack.OrmLite.SqlServer.3.9.2\lib\ServiceStack.OrmLite.SqlServer.dll</HintPath>
73-
</Reference>
74-
<Reference Include="ServiceStack.Text, Version=3.9.0.0, Culture=neutral, PublicKeyToken=null">
75-
<HintPath>..\packages\ServiceStack.Text.3.9.2\lib\net35\ServiceStack.Text.dll</HintPath>
76-
</Reference>
7782
</ItemGroup>
7883
<ItemGroup>
7984
<Compile Include="AppHost.cs" />

src/RazorRockstars/RazorRockstars.sln

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,28 @@
1-
2-
Microsoft Visual Studio Solution File, Format Version 11.00
3-
# Visual Studio 2010
4-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RazorRockstars.Console", "RazorRockstars.Console\RazorRockstars.Console.csproj", "{30BA8DF9-4698-4051-B8E9-84C81E330E24}"
5-
EndProject
6-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RazorRockstars.Console.Mono", "Mono\RazorRockstars.Console.Mono\RazorRockstars.Console.Mono.csproj", "{30BA8DF9-4698-4051-B8E9-84C81E330E24}"
7-
EndProject
8-
Global
9-
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10-
Debug|x86 = Debug|x86
11-
Release|x86 = Release|x86
12-
EndGlobalSection
13-
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14-
{30BA8DF9-4698-4051-B8E9-84C81E330E24}.Debug|x86.ActiveCfg = Debug|x86
15-
{30BA8DF9-4698-4051-B8E9-84C81E330E24}.Debug|x86.ActiveCfg = Debug|x86
16-
{30BA8DF9-4698-4051-B8E9-84C81E330E24}.Debug|x86.Build.0 = Debug|x86
17-
{30BA8DF9-4698-4051-B8E9-84C81E330E24}.Release|x86.ActiveCfg = Release|x86
18-
{30BA8DF9-4698-4051-B8E9-84C81E330E24}.Release|x86.ActiveCfg = Release|x86
19-
{30BA8DF9-4698-4051-B8E9-84C81E330E24}.Release|x86.Build.0 = Release|x86
20-
{30BA8DF9-4698-4051-B8E9-84C81E330E24}.Release|x86.Build.0 = Release|x86
21-
EndGlobalSection
22-
GlobalSection(MonoDevelopProperties) = preSolution
23-
StartupItem = Mono\RazorRockstars.Console.Mono\RazorRockstars.Console.Mono.csproj
24-
EndGlobalSection
25-
GlobalSection(SolutionProperties) = preSolution
26-
HideSolutionNode = FALSE
27-
EndGlobalSection
28-
EndGlobal
1+
2+
Microsoft Visual Studio Solution File, Format Version 11.00
3+
# Visual Studio 2010
4+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RazorRockstars.Console", "RazorRockstars.Console\RazorRockstars.Console.csproj", "{30BA8DF9-4698-4051-B8E9-84C81E330E24}"
5+
EndProject
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RazorRockstars.Console.Mono", "Mono\RazorRockstars.Console.Mono\RazorRockstars.Console.Mono.csproj", "{30BA8DF9-4698-4051-B8E9-84C81E330E24}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|x86 = Debug|x86
11+
Release|x86 = Release|x86
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{30BA8DF9-4698-4051-B8E9-84C81E330E24}.Debug|x86.ActiveCfg = Debug|x86
15+
{30BA8DF9-4698-4051-B8E9-84C81E330E24}.Debug|x86.ActiveCfg = Debug|x86
16+
{30BA8DF9-4698-4051-B8E9-84C81E330E24}.Debug|x86.Build.0 = Debug|x86
17+
{30BA8DF9-4698-4051-B8E9-84C81E330E24}.Release|x86.ActiveCfg = Release|x86
18+
{30BA8DF9-4698-4051-B8E9-84C81E330E24}.Release|x86.ActiveCfg = Release|x86
19+
{30BA8DF9-4698-4051-B8E9-84C81E330E24}.Release|x86.Build.0 = Release|x86
20+
{30BA8DF9-4698-4051-B8E9-84C81E330E24}.Release|x86.Build.0 = Release|x86
21+
EndGlobalSection
22+
GlobalSection(MonoDevelopProperties) = preSolution
23+
StartupItem = Mono\RazorRockstars.Console.Mono\RazorRockstars.Console.Mono.csproj
24+
EndGlobalSection
25+
GlobalSection(SolutionProperties) = preSolution
26+
HideSolutionNode = FALSE
27+
EndGlobalSection
28+
EndGlobal

0 commit comments

Comments
 (0)