Skip to content

Commit 6a5f147

Browse files
Remove sample websites and switch to serilog (less dep issues)
1 parent 0250b6b commit 6a5f147

26 files changed

+2
-3671
lines changed

src/InEngine.Net.sln

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,6 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "InEngine.Core.Test", "InEng
1818
EndProject
1919
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "InEngine.IntegrationTest", "InEngine.IntegrationTest\InEngine.IntegrationTest.csproj", "{4670F16D-6E98-4711-8587-BBD1FBCE358F}"
2020
EndProject
21-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SampleMvcWebsite", "SampleMvcWebsite\SampleMvcWebsite.csproj", "{F4D5AED0-4FFD-4A5A-9153-F25BA4A2C52E}"
22-
EndProject
23-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SampleWebApi", "SampleWebApi\SampleWebApi.csproj", "{169D410B-68C4-4D3E-9178-216748DFE69D}"
24-
EndProject
2521
Global
2622
GlobalSection(SolutionConfigurationPlatforms) = preSolution
2723
Debug|Any CPU = Debug|Any CPU
@@ -48,14 +44,6 @@ Global
4844
{4670F16D-6E98-4711-8587-BBD1FBCE358F}.Debug|Any CPU.Build.0 = Debug|Any CPU
4945
{4670F16D-6E98-4711-8587-BBD1FBCE358F}.Release|Any CPU.ActiveCfg = Release|Any CPU
5046
{4670F16D-6E98-4711-8587-BBD1FBCE358F}.Release|Any CPU.Build.0 = Release|Any CPU
51-
{F4D5AED0-4FFD-4A5A-9153-F25BA4A2C52E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
52-
{F4D5AED0-4FFD-4A5A-9153-F25BA4A2C52E}.Debug|Any CPU.Build.0 = Debug|Any CPU
53-
{F4D5AED0-4FFD-4A5A-9153-F25BA4A2C52E}.Release|Any CPU.ActiveCfg = Release|Any CPU
54-
{F4D5AED0-4FFD-4A5A-9153-F25BA4A2C52E}.Release|Any CPU.Build.0 = Release|Any CPU
55-
{169D410B-68C4-4D3E-9178-216748DFE69D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
56-
{169D410B-68C4-4D3E-9178-216748DFE69D}.Debug|Any CPU.Build.0 = Debug|Any CPU
57-
{169D410B-68C4-4D3E-9178-216748DFE69D}.Release|Any CPU.ActiveCfg = Release|Any CPU
58-
{169D410B-68C4-4D3E-9178-216748DFE69D}.Release|Any CPU.Build.0 = Release|Any CPU
5947
EndGlobalSection
6048
GlobalSection(SolutionProperties) = preSolution
6149
HideSolutionNode = FALSE

src/InEngine/InEngine.csproj

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@
2222
<ProjectReference Include="..\InEngine.Commands\InEngine.Commands.csproj" />
2323
</ItemGroup>
2424
<ItemGroup>
25+
<PackageReference Include="Common.Logging.Serilog" Version="4.4.0" />
2526
<PackageReference Include="NETStandard.Library" Version="2.0.1" />
2627
<PackageReference Include="CommandLineParser" Version="1.9.71" />
27-
<PackageReference Include="Common.Logging.NLog41" Version="3.4.1" />
2828
</ItemGroup>
2929
<ItemGroup>
3030
<Reference Include="System.ServiceProcess" />
@@ -37,9 +37,6 @@
3737
<None Update="Uninstall.ps1">
3838
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
3939
</None>
40-
<None Update="NLog.config">
41-
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
42-
</None>
4340
<None Update="inengine">
4441
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
4542
</None>

src/InEngine/NLog.config

Lines changed: 0 additions & 16 deletions
This file was deleted.

src/InEngine/NLog.xsd

Lines changed: 0 additions & 3103 deletions
This file was deleted.

src/InEngine/app.config

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,7 @@
77
</configSections>
88
<common>
99
<logging>
10-
<factoryAdapter type="Common.Logging.NLog.NLogLoggerFactoryAdapter, Common.Logging.NLog41">
11-
<arg key="configType" value="FILE" />
12-
<arg key="configFile" value="NLog.config" />
13-
</factoryAdapter>
10+
<factoryAdapter type="Common.Logging.Serilog.SerilogFactoryAdapter, Common.Logging.Serilog" />
1411
</logging>
1512
</common>
1613
</configuration>

src/SampleMvcWebsite/App_Start/RouteConfig.cs

Lines changed: 0 additions & 19 deletions
This file was deleted.

src/SampleMvcWebsite/Controllers/HomeController.cs

Lines changed: 0 additions & 28 deletions
This file was deleted.

src/SampleMvcWebsite/Global.asax

Lines changed: 0 additions & 1 deletion
This file was deleted.

src/SampleMvcWebsite/Global.asax.cs

Lines changed: 0 additions & 26 deletions
This file was deleted.

src/SampleMvcWebsite/SampleMvcWebsite.csproj

Lines changed: 0 additions & 108 deletions
This file was deleted.

0 commit comments

Comments
 (0)