Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

.NET Standard 2.0 #38

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Visual Studio cache/options directory
.vs/

# User-specific files
*.suo
*.user
Expand Down
62 changes: 0 additions & 62 deletions Properties/AssemblyInfo.cs

This file was deleted.

8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ See our [API quick start][1] guide for more information.

## Requirements

Requires .NET 2.0+
Requires .NET 2.0+ or .NET Standard 2.0

## Installation

Expand All @@ -25,11 +25,11 @@ From the command line:

From Package Manager:

Install-Package RusticiSoftware.HostedEngine.Client -Version 1.5.0
Install-Package RusticiSoftware.HostedEngine.Client -Version 2.0.0

From .NET CLI:

dotnet add package RusticiSoftware.HostedEngine.Client --version 1.5.0
dotnet add package RusticiSoftware.HostedEngine.Client --version 2.0.0

### Configuration

Expand Down Expand Up @@ -174,7 +174,7 @@ escalated quickly to real, live developers.


[1]: https://cloud.scorm.com/docs/quick_start.html
[2]: https://www.nuget.org/packages/RusticiSoftware.HostedEngine.Client/1.5.0
[2]: https://www.nuget.org/packages/RusticiSoftware.HostedEngine.Client/2.0.0
[3]: https://cloud.scorm.com/docs/api_reference/index.html
[4]: https://cloud.scorm.com/docs/api_reference/registration.html#exists
[5]: https://cloud.scorm.com/docs/api_reference/registration.html#createRegistration
Expand Down
106 changes: 19 additions & 87 deletions RusticiSoftware.HostedEngine.Client.csproj
Original file line number Diff line number Diff line change
@@ -1,100 +1,32 @@
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>8.0.50727</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{11AF12EE-C99E-4A73-8BE2-1FC016867BC0}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>RusticiSoftware.HostedEngine.Client</RootNamespace>
<AssemblyName>RusticiSoftware.HostedEngine.Client</AssemblyName>
<FileUpgradeFlags>
</FileUpgradeFlags>
<OldToolsVersion>3.5</OldToolsVersion>
<UpgradeBackupLocation>
</UpgradeBackupLocation>
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
<TargetFrameworks>netstandard2.0;net20</TargetFrameworks>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<Version>2.0.0</Version>
<Authors>rustici-software-systems</Authors>
<Company>Rustici Software</Company>
<Product>Hosted SCORM Engine Client</Product>
<Description>.NET Client api for Hosted SCORM Engine Web Services</Description>
<Copyright>Copyright © 2009-2017</Copyright>
<PackageReleaseNotes>target netstandard2.0 and net20 to allow usage in .net core environments</PackageReleaseNotes>
<PackageTags>SCORM rustici elearning AICC xAPI</PackageTags>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>

<ItemGroup Condition="'$(TargetFramework)'=='net20'">
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.Web" />
<Reference Include="System.Xml" />
</ItemGroup>

<ItemGroup>
<Compile Include="AsyncImportResult.cs" />
<Compile Include="Configuration.cs" />
<Compile Include="CourseDetail.cs" />
<Compile Include="CourseVersion.cs" />
<Compile Include="PostbackInfo.cs" />
<Compile Include="Rsp.cs" />
<Compile Include="TaggingService.cs" />
<Compile Include="CourseData.cs" />
<Compile Include="CustomWebClient.cs">
<SubType>Component</SubType>
</Compile>
<Compile Include="DebugService.cs" />
<Compile Include="DestinationData.cs" />
<Compile Include="DispatchData.cs" />
<Compile Include="DispatchService.cs" />
<Compile Include="Enums.cs" />
<Compile Include="Export.cs" />
<Compile Include="ExportService.cs" />
<Compile Include="FileData.cs" />
<Compile Include="FtpService.cs" />
<Compile Include="InstanceData.cs" />
<Compile Include="InvitationInfo.cs" />
<Compile Include="InvitationService.cs" />
<Compile Include="LaunchInfo.cs" />
<Compile Include="LrsAccountService.cs" />
<Compile Include="ReportingService.cs" />
<Compile Include="UploadResult.cs" />
<Compile Include="UploadToken.cs" />
<Compile Include="UserInvitationStatus.cs" />
<Compile Include="Utils.cs" />
<Compile Include="ImportResult.cs" />
<Compile Include="Metadata.cs" />
<Compile Include="CourseService.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="RegistrationData.cs" />
<Compile Include="RegistrationService.cs" />
<Compile Include="RegistrationSummary.cs" />
<Compile Include="RequestSigner.cs" />
<Compile Include="ScormCloud.cs" />
<Compile Include="ScormEngineService.cs" />
<Compile Include="ServiceException.cs" />
<Compile Include="ServiceRequest.cs" />
<Compile Include="UploadService.cs" />
<Compile Include="XmlUtils.cs" />
<Compile Remove="clienttests.cs" />
</ItemGroup>

<ItemGroup>
<Folder Include="Types\" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\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.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->

</Project>
15 changes: 0 additions & 15 deletions RusticiSoftware.HostedEngine.Client.nuspec

This file was deleted.