Skip to content

Commit

Permalink
Project changes
Browse files Browse the repository at this point in the history
  • Loading branch information
ezet committed Feb 22, 2016
1 parent ed41a2f commit cfe5f28
Show file tree
Hide file tree
Showing 12 changed files with 76 additions and 10 deletions.
10 changes: 9 additions & 1 deletion EveAuthUtility/App.config
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
<?xml version="1.0" encoding="utf-8" ?>
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
</startup>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-8.0.0.0" newVersion="8.0.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
1 change: 0 additions & 1 deletion EveLib.Core/Util/HttpRequestHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ public static Task<string> PostRequestAsync(Uri uri, string postData) {
return GetResponseContentAsync(request);
}


/// <summary>
/// Adds the post data.
/// </summary>
Expand Down
3 changes: 3 additions & 0 deletions EveLib.CrestClient/EveLib.CrestClient.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,9 @@
<Name>EveLib.EveCrest</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<None Include="app.config" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
Expand Down
11 changes: 11 additions & 0 deletions EveLib.CrestClient/app.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-8.0.0.0" newVersion="8.0.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
11 changes: 5 additions & 6 deletions EveLib.EveAuth/EveLib.EveAuth.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@
<DocumentationFile>bin\Release\EveLib.EveAuth.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<Reference Include="EveLib.Core, Version=3.0.2.1, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\eZet.EveLib.Core.3.0.2.1\lib\net45\EveLib.Core.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="Newtonsoft.Json, Version=8.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<HintPath>..\packages\Newtonsoft.Json.8.0.2\lib\net45\Newtonsoft.Json.dll</HintPath>
<Private>True</Private>
Expand All @@ -54,12 +58,7 @@
<Compile Include="VerifyResponse.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\EveLib.Core\EveLib.Core.csproj">
<Project>{AA85978C-2BF5-419F-9F8E-B70162E83F34}</Project>
<Name>EveLib.Core</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<None Include="app.config" />
<None Include="packages.config" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
Expand Down
11 changes: 11 additions & 0 deletions EveLib.EveAuth/app.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-8.0.0.0" newVersion="8.0.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
1 change: 1 addition & 0 deletions EveLib.EveAuth/packages.config
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="eZet.EveLib.Core" version="3.0.2.1" targetFramework="net45" />
<package id="Newtonsoft.Json" version="8.0.2" targetFramework="net45" />
</packages>
1 change: 1 addition & 0 deletions EveLib.EveCrest/EveLib.EveCrest.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,7 @@
</ProjectReference>
</ItemGroup>
<ItemGroup>
<None Include="app.config" />
<None Include="packages.config" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
Expand Down
11 changes: 11 additions & 0 deletions EveLib.EveCrest/app.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-8.0.0.0" newVersion="8.0.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
12 changes: 10 additions & 2 deletions EveLib.Tests/App.config
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,19 @@

<system.diagnostics>
<sources>
<source name="EveLib"
switchValue="All">
<source name="EveLib" switchValue="All">
<listeners>
</listeners>
</source>
</sources>
</system.diagnostics>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-8.0.0.0" newVersion="8.0.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>

</configuration>
3 changes: 3 additions & 0 deletions EveLib/EveLib.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,9 @@
<Name>Evelib.ZKillboard</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<None Include="app.config" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
Expand Down
11 changes: 11 additions & 0 deletions EveLib/app.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-8.0.0.0" newVersion="8.0.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>

0 comments on commit cfe5f28

Please sign in to comment.