Skip to content

Commit

Permalink
Use Centralized Package Management
Browse files Browse the repository at this point in the history
Upgrade from .NET6 to .NET7 is needed for this.
  • Loading branch information
siwatanejo committed Mar 1, 2024
1 parent 0aac0c3 commit 572d48a
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
8 changes: 8 additions & 0 deletions Directory.Packages.props
@@ -0,0 +1,8 @@
<Project>
<PropertyGroup>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
</PropertyGroup>
<ItemGroup>
<PackageVersion Include="FSharp.Data" Version="6.3.0" />
</ItemGroup>
</Project>
4 changes: 2 additions & 2 deletions snap/snapcraft.yaml
Expand Up @@ -13,9 +13,9 @@ parts:
plugin: dotnet
source: .
build-packages:
- dotnet-sdk-6.0
- dotnet-sdk-7.0
stage-snaps:
- dotnet-runtime-60
- dotnet-runtime-70

apps:
packwallet:
Expand Down
4 changes: 2 additions & 2 deletions src/PackWallet/PackWallet.fsproj
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net7.0</TargetFramework>
</PropertyGroup>

<ItemGroup>
Expand All @@ -13,7 +13,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="FSharp.Data" Version="6.3.0" />
<PackageReference Include="FSharp.Data" />
</ItemGroup>

</Project>

0 comments on commit 572d48a

Please sign in to comment.