Skip to content

Commit 74924f9

Browse files
author
babelshift
committed
Adding portable class library version.
Changed some code to support PCL limitations. Added PCL compilation and build to appveyor.
1 parent 495193d commit 74924f9

15 files changed

Lines changed: 14234 additions & 8 deletions
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
using System.Resources;
2+
using System.Reflection;
3+
using System.Runtime.CompilerServices;
4+
using System.Runtime.InteropServices;
5+
6+
// General Information about an assembly is controlled through the following
7+
// set of attributes. Change these attribute values to modify the information
8+
// associated with an assembly.
9+
[assembly: AssemblyTitle("SteamWebAPI2")]
10+
[assembly: AssemblyDescription("This is a .NET library that makes it easy to use the Steam Web API. It conveniently wraps around all of the JSON data and ugly API details with clean methods, structures and classes.")]
11+
[assembly: AssemblyConfiguration("")]
12+
[assembly: AssemblyCompany("Justin Skiles")]
13+
[assembly: AssemblyProduct("SteamWebAPI2")]
14+
[assembly: AssemblyCopyright("Copyright © 2015")]
15+
[assembly: AssemblyTrademark("")]
16+
[assembly: AssemblyCulture("")]
17+
[assembly: NeutralResourcesLanguage("en")]
18+
19+
// Version information for an assembly consists of the following four values:
20+
//
21+
// Major Version
22+
// Minor Version
23+
// Build Number
24+
// Revision
25+
//
26+
// You can specify all the values or you can default the Build and Revision Numbers
27+
// by using the '*' as shown below:
28+
// [assembly: AssemblyVersion("1.0.*")]
29+
[assembly: AssemblyVersion("1.1.0.0")]
30+
[assembly: AssemblyFileVersion("1.0.0.0")]

SteamWebAPI2.Portable/SteamWebAPI2.Portable.csproj

Lines changed: 353 additions & 0 deletions
Large diffs are not rendered by default.

SteamWebAPI2.Portable/project.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"supports": {
3+
"net46.app": {},
4+
"uwp.10.0.app": {}
5+
},
6+
"dependencies": {
7+
"Microsoft.NETCore": "5.0.0",
8+
"Microsoft.NETCore.Portable.Compatibility": "1.0.0",
9+
"Newtonsoft.Json": "8.0.2"
10+
},
11+
"frameworks": {
12+
"dotnet": {
13+
"imports": "portable-net452+win81"
14+
}
15+
}
16+
}

0 commit comments

Comments
 (0)