Skip to content

Commit 0505245

Browse files
author
Austin Harris
committed
fixing package refs
1 parent b3e5c12 commit 0505245

4 files changed

Lines changed: 15 additions & 17 deletions

File tree

AustinHarris.JsonRpcTestN/AustinHarris.JsonRpcTestN.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@
2929
</PropertyGroup>
3030
<ItemGroup>
3131
<Reference Include="System" />
32-
<Reference Include="nunit.framework">
33-
<HintPath>..\packages\NUnit.2.6.3\lib\nunit.framework.dll</HintPath>
34-
</Reference>
3532
<Reference Include="Newtonsoft.Json">
3633
<HintPath>..\packages\Newtonsoft.Json.7.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
3734
</Reference>
35+
<Reference Include="nunit.framework">
36+
<HintPath>..\packages\NUnit.2.6.4\lib\nunit.framework.dll</HintPath>
37+
</Reference>
3838
</ItemGroup>
3939
<ItemGroup>
4040
<Compile Include="Test.cs" />
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
33
<package id="Newtonsoft.Json" version="7.0.1" targetFramework="net45" />
4-
<package id="NUnit" version="2.6.3" targetFramework="net45" />
4+
<package id="NUnit" version="2.6.4" targetFramework="net45" />
55
</packages>

Json-Rpc/AustinHarris.JsonRpc.csproj

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,12 @@
33
<PropertyGroup>
44
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
55
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
6-
<ProductVersion>8.0.30703</ProductVersion>
7-
<SchemaVersion>2.0</SchemaVersion>
86
<ProjectGuid>{24FC1A2A-0BC3-43A7-9BFE-B628C2C4A307}</ProjectGuid>
97
<OutputType>Library</OutputType>
108
<AppDesignerFolder>Properties</AppDesignerFolder>
119
<RootNamespace>AustinHarris.JsonRpc</RootNamespace>
1210
<AssemblyName>AustinHarris.JsonRpc</AssemblyName>
13-
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
11+
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
1412
<TargetFrameworkProfile>
1513
</TargetFrameworkProfile>
1614
<FileAlignment>512</FileAlignment>
@@ -42,17 +40,18 @@
4240
<WarningLevel>4</WarningLevel>
4341
<Prefer32Bit>false</Prefer32Bit>
4442
</PropertyGroup>
45-
<PropertyGroup>
46-
<StartupObject />
47-
</PropertyGroup>
4843
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
4944
<PlatformTarget>AnyCPU</PlatformTarget>
5045
<OutputPath>bin\Debug\</OutputPath>
5146
<DefineConstants>TRACE;DEBUG</DefineConstants>
47+
<WarningLevel>4</WarningLevel>
48+
<Optimize>false</Optimize>
5249
</PropertyGroup>
5350
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
5451
<PlatformTarget>AnyCPU</PlatformTarget>
5552
<OutputPath>bin\Release\</OutputPath>
53+
<WarningLevel>4</WarningLevel>
54+
<Optimize>false</Optimize>
5655
</PropertyGroup>
5756
<ItemGroup>
5857
<Compile Include="Attributes.cs" />
@@ -71,14 +70,10 @@
7170
<Compile Include="SMDService.cs" />
7271
</ItemGroup>
7372
<ItemGroup>
73+
<Reference Include="System" />
7474
<Reference Include="Newtonsoft.Json">
75-
<HintPath>..\packages\Newtonsoft.Json.6.0.5\lib\net40\Newtonsoft.Json.dll</HintPath>
76-
<Private>True</Private>
75+
<HintPath>..\packages\Newtonsoft.Json.7.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
7776
</Reference>
78-
<Reference Include="System" />
79-
</ItemGroup>
80-
<ItemGroup>
81-
<None Include="packages.config" />
8277
</ItemGroup>
8378
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
8479
<Import Project="$(SolutionDir)\.nuget\NuGet.targets" Condition="Exists('$(SolutionDir)\.nuget\NuGet.targets')" />
@@ -95,4 +90,7 @@
9590
<Target Name="AfterBuild">
9691
</Target>
9792
-->
93+
<ItemGroup>
94+
<None Include="packages.config" />
95+
</ItemGroup>
9896
</Project>

Json-Rpc/packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="Newtonsoft.Json" version="6.0.5" targetFramework="net40" />
3+
<package id="Newtonsoft.Json" version="7.0.1" targetFramework="net45" />
44
</packages>

0 commit comments

Comments
 (0)