Skip to content

Commit

Permalink
feat: Update to .NET 6 (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
zvirja authored Aug 2, 2023
1 parent a6ce88b commit bc14396
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 43 deletions.
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project>
<PropertyGroup Label="Compilation Metadata">
<TargetFramework>netcoreapp3.1</TargetFramework>
<TargetFramework>net6.0</TargetFramework>
</PropertyGroup>

<!-- TODO: Clean up warnings -->
Expand Down
2 changes: 1 addition & 1 deletion GitVersion.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
mode: ContinuousDeployment
next-version: 3.4
next-version: 4.0
branches:
master:
mode: ContinuousDelivery
Expand Down
5 changes: 3 additions & 2 deletions global.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"sdk": {
"version": "3.1.201",
"rollForward": "latestFeature"
"version": "6.0.400",
"rollForward": "latestFeature",
"allowPrerelease": "false"
},
"msbuild-sdks": {
"Microsoft.Build.CentralPackageVersions": "2.0.52"
Expand Down
8 changes: 4 additions & 4 deletions packages.props
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<Project>
<PropertyGroup Label="Dependency Versions">
<_ComponentHost>2.0.0</_ComponentHost>
<_ComponentHost>3.0.0</_ComponentHost>
<_AutoFixture>4.11.0</_AutoFixture>
<_CluedIn>3.4.0-*</_CluedIn>
<_CluedIn>4.0.0-*</_CluedIn>
</PropertyGroup>
<ItemGroup>
<!--
Expand All @@ -19,7 +19,7 @@
<PackageReference Update="xunit.runner.visualstudio" Version="2.4.1" />
<PackageReference Update="Moq" Version="4.13.1" />
<PackageReference Update="Shouldly" Version="3.0.2" />
<PackageReference Update="CluedIn.Testing.Base" Version="$(_CluedIn)" />
<PackageReference Update="CluedIn.Testing.Base" Version="4.0.0-alpha.3" />
</ItemGroup>
<ItemGroup>
<!--
Expand All @@ -28,7 +28,7 @@
-->
<PackageReference Update="ComponentHost" Version="$(_ComponentHost)" />
<PackageReference Update="CluedIn.Crawling" Version="$(_CluedIn)" />
<PackageReference Update="CluedIn.CrawlerIntegrationTesting" Version="$(_CluedIn)" />
<PackageReference Update="CluedIn.CrawlerIntegrationTesting" Version="4.0.0-alpha.3" />
<PackageReference Update="CluedIn.Core" Version="$(_CluedIn)" />
<PackageReference Update="CluedIn.Core.Agent" Version="$(_CluedIn)" />
<PackageReference Update="CluedIn.Server" Version="$(_CluedIn)" />
Expand Down
35 changes: 0 additions & 35 deletions src/ExternalSearch.Providers.GoogleMaps/Directory.Build.props

This file was deleted.

0 comments on commit bc14396

Please sign in to comment.