Skip to content

Commit

Permalink
Merge pull request #5 from davewalker5/update-dependencies
Browse files Browse the repository at this point in the history
Updated dependencies
  • Loading branch information
davewalker5 committed Oct 2, 2021
2 parents 09ca643 + 88e92a2 commit 4d451ce
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 19 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dotnetcore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.1.101
dotnet-version: 5.0.100
- name: Build
run: dotnet build --configuration Release src/TelloCommander.sln
- name: Run unit tests and generate code coverage
Expand Down
5 changes: 2 additions & 3 deletions src/TelloCommander.Tests/CommandDictionaryTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,8 @@ public class CommandDictionaryTest
[TestInitialize]
public void TestInitialise()
{
string codeBase = Assembly.GetExecutingAssembly().CodeBase;
UriBuilder builder = new UriBuilder(codeBase);
_location = Path.GetDirectoryName(Uri.UnescapeDataString(builder.Path));
string location = Assembly.GetExecutingAssembly().Location;
_location = Path.GetDirectoryName(location);
}

[TestMethod]
Expand Down
12 changes: 6 additions & 6 deletions src/TelloCommander.Tests/TelloCommander.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<TargetFramework>net5.0</TargetFramework>

<IsPackable>false</IsPackable>
<ReleaseVersion>1.0.0.5</ReleaseVersion>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.5.0" />
<PackageReference Include="MSTest.TestAdapter" Version="2.1.0" />
<PackageReference Include="MSTest.TestFramework" Version="2.1.0" />
<PackageReference Include="coverlet.collector" Version="1.2.0"><IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.11.0" />
<PackageReference Include="MSTest.TestAdapter" Version="2.2.7" />
<PackageReference Include="MSTest.TestFramework" Version="2.2.7" />
<PackageReference Include="coverlet.collector" Version="3.1.0"><IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="coverlet.msbuild" Version="2.8.0">
<PackageReference Include="coverlet.msbuild" Version="3.1.0">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
Expand Down
14 changes: 6 additions & 8 deletions src/TelloCommander/TelloCommander.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,20 @@
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<PackageId>TelloCommander</PackageId>
<ReleaseVersion>1.0.0.5</ReleaseVersion>
<PackageVersion>1.0.0.5</PackageVersion>
<ReleaseVersion>1.0.0.6</ReleaseVersion>
<PackageVersion>1.0.0.6</PackageVersion>
<Authors>Dave Walker</Authors>
<Copyright>Copyright (c) 2020 Dave Walker</Copyright>
<Copyright>Copyright (c) 2020, 2021 Dave Walker</Copyright>
<Owners>Dave Walker</Owners>
<PackageProjectUrl>https://github.com/davewalker5/TelloCommander</PackageProjectUrl>
<PackageReleaseNotes>Fixed month formatting issue in captured CSV
Refactored the DroneStatusMonitor implementation
Added the IDroneStatusMonitor interface
Added the MockDroneStatusMonitor class
Added unit tests for the mock status monitor</PackageReleaseNotes>
<PackageReleaseNotes>Dependency updates</PackageReleaseNotes>
<Summary>C# API for controlling a Tello drone</Summary>
<PackageTags>Tello API</PackageTags>
<Title>TelloCommander</Title>
<Description>C# API for controlling a Tello drone</Description>
<PackOnBuild>true</PackOnBuild>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/TelloSimulator/TelloSimulator.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<TargetFramework>net5.0</TargetFramework>
<ReleaseVersion>1.0.0.5</ReleaseVersion>
</PropertyGroup>

Expand Down

0 comments on commit 4d451ce

Please sign in to comment.