Skip to content
This repository has been archived by the owner on Nov 16, 2023. It is now read-only.

Commit

Permalink
Missed one nuget path, ignore packages in gitignore (#191)
Browse files Browse the repository at this point in the history
  • Loading branch information
jplafonta authored and jasonsandlin committed Jan 2, 2018
1 parent e49d899 commit f82aca1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ ExportedObj/
*.svd
*.log

#nuget packages
External/Packages/*

#CppSource files to ignore
CppSource/External/Packages/*
CppSource/Obj/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,11 @@
<ItemGroup>
<Reference Include="mscorlib" />
<Reference Include="Newtonsoft.Json, Version=9.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL" Condition="'$(TargetFrameworkVersion)' == 'v3.5'">
<HintPath>..\..\external\packages\Newtonsoft.Json.9.0.1\lib\net35\Newtonsoft.Json.dll</HintPath>
<HintPath>..\..\..\External\packages\Newtonsoft.Json.9.0.1\lib\net35\Newtonsoft.Json.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="Newtonsoft.Json, Version=9.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL" Condition="'$(TargetFrameworkVersion)' == 'v4.6.1'">
<HintPath>..\..\..\external\packages\Newtonsoft.Json.9.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
<HintPath>..\..\..\External\packages\Newtonsoft.Json.9.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="System" />
Expand Down

0 comments on commit f82aca1

Please sign in to comment.