Skip to content

Commit 66a9ad5

Browse files
committed
Nuget updates
1 parent 8a7ae8c commit 66a9ad5

13 files changed

Lines changed: 119 additions & 186 deletions

ReflectInsight.Extensions.Logging.sln

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,27 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio 14
4-
VisualStudioVersion = 14.0.25420.1
3+
# Visual Studio 15
4+
VisualStudioVersion = 15.0.26430.13
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "02. src", "02. src", "{BFA64C32-4422-4AF9-8ECF-D2ECF2E0230B}"
77
EndProject
88
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "01. Solution Items", "01. Solution Items", "{D94023CF-59CC-4D69-B30B-991C7D52F49A}"
99
ProjectSection(SolutionItems) = preProject
1010
appveyor.yml = appveyor.yml
1111
build.ps1 = build.ps1
12-
global.json = global.json
1312
LICENSE.txt = LICENSE.txt
14-
nuget.config = nuget.config
1513
README.md = README.md
1614
header\ReflectSoftware.licenseheader = header\ReflectSoftware.licenseheader
1715
header\VersionInfo.cs = header\VersionInfo.cs
1816
EndProjectSection
1917
EndProject
2018
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "03. samples", "03. samples", "{0A6739C6-1BDC-4359-9339-CAA735531E0C}"
2119
EndProject
22-
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "ReflectInsight.Extensions.Logging", "src\ReflectInsight.Extensions.Logging\ReflectInsight.Extensions.Logging.xproj", "{E1B8B885-436F-480D-851A-C466E07DD6C8}"
20+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ReflectInsight.Extensions.Logging", "src\ReflectInsight.Extensions.Logging\ReflectInsight.Extensions.Logging.csproj", "{E1B8B885-436F-480D-851A-C466E07DD6C8}"
2321
EndProject
24-
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Console.ReflectInsightSample", "samples\LoggingReflectInsight\Console.ReflectInsightSample\Console.ReflectInsightSample.xproj", "{77B97056-6AFC-4450-93AE-9DA1664C5FFB}"
22+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Console.ReflectInsightSample", "samples\LoggingReflectInsight\Console.ReflectInsightSample\Console.ReflectInsightSample.csproj", "{77B97056-6AFC-4450-93AE-9DA1664C5FFB}"
2523
EndProject
26-
Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "WebApi.ReflectInsightSample", "samples\LoggingReflectInsight\WebApi.ReflectInsightSample\WebApi.ReflectInsightSample.xproj", "{390BA242-1AE3-4E7B-9E55-21AE86E17458}"
24+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WebApi.ReflectInsightSample", "samples\LoggingReflectInsight\WebApi.ReflectInsightSample\WebApi.ReflectInsightSample.csproj", "{390BA242-1AE3-4E7B-9E55-21AE86E17458}"
2725
EndProject
2826
Global
2927
GlobalSection(SolutionConfigurationPlatforms) = preSolution

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
version: '{build}'
22
skip_tags: true
3-
image: Visual Studio 2015
3+
image: Visual Studio 2017
44
configuration: Release
55
install:
66
- ps: mkdir -Force ".\build\" | Out-Null

global.json

Lines changed: 0 additions & 6 deletions
This file was deleted.
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFramework>net461</TargetFramework>
5+
<AssemblyName>Console.ReflectInsightSample</AssemblyName>
6+
<OutputType>Exe</OutputType>
7+
<PackageId>Console.ReflectInsightSample</PackageId>
8+
<GenerateAssemblyTitleAttribute>false</GenerateAssemblyTitleAttribute>
9+
<GenerateAssemblyDescriptionAttribute>false</GenerateAssemblyDescriptionAttribute>
10+
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
11+
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
12+
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
13+
<GenerateAssemblyCopyrightAttribute>false</GenerateAssemblyCopyrightAttribute>
14+
</PropertyGroup>
15+
16+
<ItemGroup>
17+
<ProjectReference Include="..\..\..\src\ReflectInsight.Extensions.Logging\ReflectInsight.Extensions.Logging.csproj" />
18+
</ItemGroup>
19+
20+
<ItemGroup>
21+
<PackageReference Include="Microsoft.Extensions.Logging" Version="1.1.2" />
22+
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="1.1.2" />
23+
</ItemGroup>
24+
25+
<ItemGroup Condition=" '$(TargetFramework)' == 'net461' ">
26+
<Reference Include="System" />
27+
<Reference Include="Microsoft.CSharp" />
28+
</ItemGroup>
29+
30+
</Project>

samples/LoggingReflectInsight/Console.ReflectInsightSample/Console.ReflectInsightSample.xproj

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

samples/LoggingReflectInsight/Console.ReflectInsightSample/project.json

Lines changed: 0 additions & 17 deletions
This file was deleted.
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
<Project Sdk="Microsoft.NET.Sdk.Web">
2+
3+
<PropertyGroup>
4+
<TargetFramework>net461</TargetFramework>
5+
<PreserveCompilationContext>true</PreserveCompilationContext>
6+
<AssemblyName>WebApi.ReflectInsightSample</AssemblyName>
7+
<OutputType>Exe</OutputType>
8+
<PackageId>WebApi.ReflectInsightSample</PackageId>
9+
</PropertyGroup>
10+
11+
<ItemGroup>
12+
<None Update="ReflectInsight.config">
13+
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
14+
</None>
15+
</ItemGroup>
16+
17+
<ItemGroup>
18+
<ProjectReference Include="..\..\..\src\ReflectInsight.Extensions.Logging\ReflectInsight.Extensions.Logging.csproj" />
19+
</ItemGroup>
20+
21+
<ItemGroup>
22+
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="1.1.3" />
23+
<PackageReference Include="Microsoft.AspNetCore.Server.IISIntegration" Version="1.1.2" />
24+
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel" Version="1.1.2" />
25+
<PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="1.1.2" />
26+
<PackageReference Include="Microsoft.Extensions.Configuration.FileExtensions" Version="1.1.2" />
27+
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="1.1.2" />
28+
<PackageReference Include="Microsoft.Extensions.Logging" Version="1.1.2" />
29+
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="1.1.2" />
30+
</ItemGroup>
31+
32+
<ItemGroup Condition=" '$(TargetFramework)' == 'net461' ">
33+
<Reference Include="System" />
34+
<Reference Include="Microsoft.CSharp" />
35+
</ItemGroup>
36+
37+
</Project>

samples/LoggingReflectInsight/WebApi.ReflectInsightSample/WebApi.ReflectInsightSample.xproj

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

samples/LoggingReflectInsight/WebApi.ReflectInsightSample/project.json

Lines changed: 0 additions & 40 deletions
This file was deleted.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"gcServer": true
3+
}

0 commit comments

Comments
 (0)