Skip to content

Commit e6ee73e

Browse files
committed
Allow tool to roll forward through major versions.
Drop end of life frameworks.
1 parent 8c6273e commit e6ee73e

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

Directory.Packages.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
44
</PropertyGroup>
55
<ItemGroup>
6-
<PackageVersion Include="Facility.CodeGen.Console" Version="2.14.0" />
7-
<PackageVersion Include="Facility.Definition" Version="2.14.0" />
6+
<PackageVersion Include="Facility.CodeGen.Console" Version="2.15.0" />
7+
<PackageVersion Include="Facility.Definition" Version="2.15.0" />
88
<PackageVersion Include="FluentAssertions" Version="6.12.0" />
99
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.10.0" />
1010
<PackageVersion Include="NUnit" Version="4.1.0" />

dotnet-tools.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"isRoot": true,
44
"tools": {
55
"facilityconformance": {
6-
"version": "2.29.0",
6+
"version": "2.30.0",
77
"commands": [
88
"FacilityConformance"
99
],

src/Facility.CodeGen.JavaScript/Facility.CodeGen.JavaScript.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>netstandard2.0;net6.0;net7.0;net8.0</TargetFrameworks>
4+
<TargetFrameworks>netstandard2.0;net8.0</TargetFrameworks>
55
<Description>A library that generates JavaScript or TypeScript for a Facility Service Definition.</Description>
66
<PackageTags>Facility FSD JavaScript TypeScript CodeGen</PackageTags>
77
<IsPackable>true</IsPackable>

src/fsdgenjs/fsdgenjs.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,12 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
5+
<TargetFramework>net8.0</TargetFramework>
66
<Description>A tool that generates JavaScript or TypeScript for a Facility Service Definition.</Description>
77
<PackageTags>Facility FSD JavaScript TypeScript CodeGen</PackageTags>
88
<IsPackable>true</IsPackable>
99
<PackAsTool>true</PackAsTool>
10+
<RollForward>Major</RollForward>
1011
<PackageReadmeFile>README.md</PackageReadmeFile>
1112
</PropertyGroup>
1213

0 commit comments

Comments
 (0)