Skip to content

Commit 77831ee

Browse files
author
bbeversdorf
authored
SL-8459 - Updates LocalLRS (#43)
1 parent 5df6220 commit 77831ee

4 files changed

Lines changed: 16 additions & 4 deletions

File tree

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ jobs:
1515
with:
1616
dotnet-version: |
1717
3.1.x
18-
6.0.x
1918
7.0.x
19+
8.0.x
2020
- name: Retore Workload
2121
run: dotnet workload restore
2222
- name: Restore dependencies

Float.TinCan.ActivityLibrary.Tests/Float.TinCan.ActivityLibrary.Tests.csproj

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFrameworks>netcoreapp3.1;net6.0;net7.0</TargetFrameworks>
3+
<TargetFrameworks>netcoreapp3.1;net7.0;net8.0;</TargetFrameworks>
44
<IsPackable>false</IsPackable>
55
<LangVersion>9.0</LangVersion>
66
<UseMaui>true</UseMaui>
@@ -19,6 +19,9 @@
1919
<PrivateAssets>all</PrivateAssets>
2020
</PackageReference>
2121
</ItemGroup>
22+
<ItemGroup Condition="$(TargetFramework.StartsWith('net8'))">
23+
<PackageReference Include="Microsoft.Maui.Controls" Version="8.0.7" />
24+
</ItemGroup>
2225
<ItemGroup>
2326
<ProjectReference Include="..\Float.TinCan.ActivityLibrary\Float.TinCan.ActivityLibrary.csproj" />
2427
</ItemGroup>

Float.TinCan.ActivityLibrary.Tests/TinCanActivityRunner.tests.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
using System.Collections.Generic;
33
using System.ComponentModel;
44
using System.Linq;
5+
using System.Net;
56
using System.Threading.Tasks;
67
using Float.TinCan.ActivityLibrary.Definition;
78
using Float.TinCan.LocalLRSServer;
@@ -240,6 +241,11 @@ public AgentProfileDocument AgentProfileDocumentForProfileId(string profileId)
240241
throw new NotImplementedException();
241242
}
242243

244+
public void AlterAgentProfileResponse(HttpListenerRequest request, ref HttpListenerResponse response, ref AgentProfileDocument profileDocument)
245+
{
246+
throw new NotImplementedException();
247+
}
248+
243249
public string GetAccessConrolAllowOrigin()
244250
{
245251
throw new NotImplementedException();

Float.TinCan.ActivityLibrary/Float.TinCan.ActivityLibrary.csproj

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFrameworks>netstandard2;net6.0;net7.0</TargetFrameworks>
3+
<TargetFrameworks>netstandard2;net7.0;net8.0;</TargetFrameworks>
44
<AssemblyName>Float.TinCan.ActivityLibrary</AssemblyName>
55
<AssemblyAuthor>Float</AssemblyAuthor>
66
<AssemblyDescription>A library for starting xAPI activities.</AssemblyDescription>
@@ -34,13 +34,16 @@
3434
<ItemGroup>
3535
<PackageReference Include="Float.FileDownloader" Version="1.0.0.44" />
3636
<PackageReference Include="Float.TinCan" Version="1.0.3.30" />
37-
<PackageReference Include="Float.TinCan.LocalLRSServer" Version="2.0.0.1" />
37+
<PackageReference Include="Float.TinCan.LocalLRSServer" Version="2.1.0" />
3838
<PackageReference Include="Float.Core" Version="2.0.0" />
3939
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118">
4040
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
4141
<PrivateAssets>all</PrivateAssets>
4242
</PackageReference>
4343
</ItemGroup>
44+
<ItemGroup Condition="$(TargetFramework.StartsWith('net8'))">
45+
<PackageReference Include="Microsoft.Maui.Controls" Version="8.0.7" />
46+
</ItemGroup>
4447
<ItemGroup Condition="$(TargetFramework.StartsWith('netstandard'))">
4548
<PackageReference Include="Xamarin.Forms" Version="[5.0.0.1874,6)" />
4649
</ItemGroup>

0 commit comments

Comments
 (0)