Skip to content

Commit 2703e5e

Browse files
committed
Upgrading to 0.16.1 and getting rid of common logging
1 parent 15ed163 commit 2703e5e

File tree

7 files changed

+10
-157
lines changed

7 files changed

+10
-157
lines changed

.nuget/NuGet.Config

-6
This file was deleted.

.nuget/NuGet.exe

-1.53 MB
Binary file not shown.

.nuget/NuGet.targets

-136
This file was deleted.

ScriptCs.WebApi.sln

+3-8
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,10 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio 2012
3+
# Visual Studio 14
4+
VisualStudioVersion = 14.0.24720.0
5+
MinimumVisualStudioVersion = 10.0.40219.1
46
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ScriptCs.WebApi", "src\ScriptCs.WebApi\ScriptCs.WebApi.csproj", "{3EA6C2F0-3195-446F-8B7F-92C11BC4C267}"
57
EndProject
6-
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".nuget", ".nuget", "{DEE563DB-EFC9-4F3B-9520-2751F64F7464}"
7-
ProjectSection(SolutionItems) = preProject
8-
.nuget\NuGet.Config = .nuget\NuGet.Config
9-
.nuget\NuGet.exe = .nuget\NuGet.exe
10-
.nuget\NuGet.targets = .nuget\NuGet.targets
11-
EndProjectSection
12-
EndProject
138
Global
149
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1510
Debug|Any CPU = Debug|Any CPU

src/ScriptCs.WebApi/Properties/AssemblyInfo.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@
1414

1515
[assembly: Guid("be92b3c5-a23a-4234-8856-162fb14ec2b1")]
1616

17-
[assembly: AssemblyVersion("1.0.0")]
18-
[assembly: AssemblyFileVersion("1.0.0")]
19-
[assembly: AssemblyInformationalVersion("1.0.0")]
17+
[assembly: AssemblyVersion("1.0.1")]
18+
[assembly: AssemblyFileVersion("1.0.1")]
19+
[assembly: AssemblyInformationalVersion("1.0.1")]

src/ScriptCs.WebApi/ScriptCs.WebApi.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,9 @@
4848
<Reference Include="Owin">
4949
<HintPath>..\..\packages\Owin.1.0\lib\net40\Owin.dll</HintPath>
5050
</Reference>
51-
<Reference Include="ScriptCs.Contracts">
52-
<HintPath>..\..\packages\ScriptCs.Contracts.0.15.0\lib\net45\ScriptCs.Contracts.dll</HintPath>
51+
<Reference Include="ScriptCs.Contracts, Version=0.16.0.0, Culture=neutral, processorArchitecture=MSIL">
52+
<HintPath>..\..\packages\ScriptCs.Contracts.0.16.1\lib\net45\ScriptCs.Contracts.dll</HintPath>
53+
<Private>True</Private>
5354
</Reference>
5455
<Reference Include="System" />
5556
<Reference Include="System.ComponentModel.Composition" />
@@ -94,7 +95,6 @@
9495
</None>
9596
</ItemGroup>
9697
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
97-
<Import Project="$(SolutionDir)\.nuget\nuget.targets" />
9898
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
9999
Other similar extension points exist, see Microsoft.Common.targets.
100100
<Target Name="BeforeBuild">

src/ScriptCs.WebApi/packages.config

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99
<package id="Microsoft.Owin.Hosting" version="2.0.2" targetFramework="net45" />
1010
<package id="Newtonsoft.Json" version="4.5.11" targetFramework="net45" />
1111
<package id="Owin" version="1.0" targetFramework="net45" />
12-
<package id="ScriptCs.Contracts" version="0.15.0" targetFramework="net45" />
12+
<package id="ScriptCs.Contracts" version="0.16.1" targetFramework="net45" />
1313
</packages>

0 commit comments

Comments
 (0)