Skip to content

Commit

Permalink
vs2017 : add doc project
Browse files Browse the repository at this point in the history
  • Loading branch information
StefH committed Mar 25, 2017
1 parent 2d7363b commit 199f7b5
Show file tree
Hide file tree
Showing 6 changed files with 48 additions and 0 deletions.
17 changes: 17 additions & 0 deletions System.Linq.Dynamic.Core.vs2017.sln
Expand Up @@ -27,6 +27,10 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "System.Linq.Dynamic.Core.Te
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EntityFramework.DynamicLinq.Tests", "test\EntityFramework.DynamicLinq.Tests\EntityFramework.DynamicLinq.Tests.csproj", "{BF97CB1B-5043-4256-8F42-CF3A4F3863BE}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "doc", "doc", "{1384C18E-DCF3-4A5B-9560-2BF5DD8C51CE}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "System.Linq.Dynamic.Core.SandCastle", "doc\System.Linq.Dynamic.Core.SandCastle\System.Linq.Dynamic.Core.SandCastle.csproj", "{27E54CD4-1D80-4797-88DC-1C535C1E9B4A}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down Expand Up @@ -109,6 +113,18 @@ Global
{BF97CB1B-5043-4256-8F42-CF3A4F3863BE}.Release|x64.Build.0 = Release|Any CPU
{BF97CB1B-5043-4256-8F42-CF3A4F3863BE}.Release|x86.ActiveCfg = Release|Any CPU
{BF97CB1B-5043-4256-8F42-CF3A4F3863BE}.Release|x86.Build.0 = Release|Any CPU
{27E54CD4-1D80-4797-88DC-1C535C1E9B4A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{27E54CD4-1D80-4797-88DC-1C535C1E9B4A}.Debug|Any CPU.Build.0 = Debug|Any CPU
{27E54CD4-1D80-4797-88DC-1C535C1E9B4A}.Debug|x64.ActiveCfg = Debug|Any CPU
{27E54CD4-1D80-4797-88DC-1C535C1E9B4A}.Debug|x64.Build.0 = Debug|Any CPU
{27E54CD4-1D80-4797-88DC-1C535C1E9B4A}.Debug|x86.ActiveCfg = Debug|Any CPU
{27E54CD4-1D80-4797-88DC-1C535C1E9B4A}.Debug|x86.Build.0 = Debug|Any CPU
{27E54CD4-1D80-4797-88DC-1C535C1E9B4A}.Release|Any CPU.ActiveCfg = Release|Any CPU
{27E54CD4-1D80-4797-88DC-1C535C1E9B4A}.Release|Any CPU.Build.0 = Release|Any CPU
{27E54CD4-1D80-4797-88DC-1C535C1E9B4A}.Release|x64.ActiveCfg = Release|Any CPU
{27E54CD4-1D80-4797-88DC-1C535C1E9B4A}.Release|x64.Build.0 = Release|Any CPU
{27E54CD4-1D80-4797-88DC-1C535C1E9B4A}.Release|x86.ActiveCfg = Release|Any CPU
{27E54CD4-1D80-4797-88DC-1C535C1E9B4A}.Release|x86.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand All @@ -120,5 +136,6 @@ Global
{81056B5E-5BA9-483F-9836-AA3274DDCF96} = {DBD7D9B6-FCC7-4650-91AF-E6457573A68F}
{912FBF24-3CAE-4A50-B5EA-E525B9FAEC80} = {8463ED7E-69FB-49AE-85CF-0791AFD98E38}
{BF97CB1B-5043-4256-8F42-CF3A4F3863BE} = {8463ED7E-69FB-49AE-85CF-0791AFD98E38}
{27E54CD4-1D80-4797-88DC-1C535C1E9B4A} = {1384C18E-DCF3-4A5B-9560-2BF5DD8C51CE}
EndGlobalSection
EndGlobal
@@ -0,0 +1,25 @@
<Project Sdk="Microsoft.NET.Sdk.Web">

<PropertyGroup>
<TargetFramework>netcoreapp1.0</TargetFramework>
<PreserveCompilationContext>true</PreserveCompilationContext>
<AssemblyName>System.Linq.Dynamic.Core.SandCastle</AssemblyName>
<OutputType>Exe</OutputType>
<PackageId>System.Linq.Dynamic.Core.SandCastle</PackageId>
<PackageTargetFallback>$(PackageTargetFallback);dotnet5.6;dnxcore50;portable-net45+win8</PackageTargetFallback>
</PropertyGroup>

<ItemGroup>
<None Update="wwwroot\**\*">
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
</None>
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Diagnostics" Version="1.1.1" />
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="1.1.1" />
<PackageReference Include="Microsoft.AspNetCore.Server.IISIntegration" Version="1.1.1" />
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel" Version="1.1.1" />
</ItemGroup>

</Project>
@@ -0,0 +1,3 @@
{
"gcServer": true
}
@@ -0,0 +1,3 @@
{
"projects": [ "src", "src-console", "test", "test-uap", "test2", "web" ]
}

0 comments on commit 199f7b5

Please sign in to comment.