Skip to content

Commit

Permalink
Merge pull request #12 from Moesif/migrate-to-netstandard
Browse files Browse the repository at this point in the history
Fix: Remove extra app.config and package.config
  • Loading branch information
dgilling authored Jun 15, 2020
2 parents dd8703f + f136e1d commit ffbdc76
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 33 deletions.
3 changes: 0 additions & 3 deletions Moesif.Api.Test/packages.config
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Microsoft.Bcl" version="1.1.10" targetFramework="net45" />
<package id="Microsoft.Bcl.Async" version="1.0.168" targetFramework="net45" />
<package id="Microsoft.Bcl.Build" version="1.0.21" targetFramework="net45" />
<package id="Newtonsoft.Json" version="9.0.1" targetFramework="net45" />
<package id="NUnit" version="3.5.0" targetFramework="net45" />
<package id="Unirest-APIMATIC" version="1.0.1.26" targetFramework="net45" />
Expand Down
7 changes: 3 additions & 4 deletions Moesif.Api/Moesif.Api.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net45</TargetFrameworks>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
</PropertyGroup>
<PropertyGroup>
<SignAssembly>true</SignAssembly>
Expand All @@ -16,8 +17,8 @@
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net45'">
<Reference Include="System"/>
<Reference Include="System.Net.Http"/>
<Reference Include="System" />
<Reference Include="System.Net.Http" />
</ItemGroup>
<ItemGroup>
<Folder Include="Models\" />
Expand All @@ -27,9 +28,7 @@
<Folder Include="Http\Response" />
<Folder Include="Exceptions" />
<Folder Include="Properties" />
<None Include="app.config" />
<None Include="Moesif.Api.nuspec" />
<None Include="Moesif.Api.snk" />
<None Include="packages.config" />
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion Moesif.Api/Moesif.Api.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package >
<metadata>
<id>Moesif.Api</id>
<version>2.0.0</version>
<version>2.0.1</version>
<title>MoesifApi</title>
<authors>Moesif</authors>
<owners>Moesif</owners>
Expand Down
6 changes: 3 additions & 3 deletions Moesif.Api/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Moesif.Api")]
[assembly: AssemblyDescription("Moesif API Debugger SDK Lib")]
[assembly: AssemblyDescription("Moesif API SDK Lib")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Moesif, Inc")]
[assembly: AssemblyProduct("Moesif.Api")]
Expand All @@ -23,5 +23,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.0.0")]
[assembly: AssemblyFileVersion("2.0.0")]
[assembly: AssemblyVersion("2.0.1")]
[assembly: AssemblyFileVersion("2.0.1")]
15 changes: 0 additions & 15 deletions Moesif.Api/app.config

This file was deleted.

7 changes: 0 additions & 7 deletions Moesif.Api/packages.config

This file was deleted.

0 comments on commit ffbdc76

Please sign in to comment.