Skip to content

Commit 009383a

Browse files
Downgrades package reference to fix build error
1 parent b41f11f commit 009383a

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

src/System.CommandLine.Extensions.SourceGenerators/System.CommandLine.Extensions.SourceGenerators.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
<PropertyGroup>
44
<ImplicitUsings>enable</ImplicitUsings>
55
<Nullable>enable</Nullable>
6-
<LangVersion>latest</LangVersion>
7-
<TargetFrameworks>netstandard2.0</TargetFrameworks>
6+
<LangVersion>default</LangVersion>
7+
<TargetFramework>netstandard2.0</TargetFramework>
88
<EnforceExtendedAnalyzerRules>true</EnforceExtendedAnalyzerRules>
99
</PropertyGroup>
1010

@@ -13,7 +13,7 @@
1313
<PrivateAssets>all</PrivateAssets>
1414
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1515
</PackageReference>
16-
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.9.2" />
16+
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.8.0" />
1717
</ItemGroup>
1818

1919
</Project>

src/System.CommandLine.Extensions/System.CommandLine.Extensions.csproj

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

33
<PropertyGroup>
4-
<PackageVersion>2.1.1-beta4.22272.1</PackageVersion>
4+
<PackageVersion>2.1.2-beta4.22272.1</PackageVersion>
55
<Authors>Matthias Friedrich</Authors>
66
<Description>A slim command configuration and execution layer similar to Microsoft.Extensions.CommandlineUtils.</Description>
77
<Copyright>2020 - 2024 by Matthias Friedrich</Copyright>
@@ -11,9 +11,9 @@
1111
<LangVersion>default</LangVersion>
1212
<Nullable>enable</Nullable>
1313
<PackageReadmeFile>README.md</PackageReadmeFile>
14-
<AssemblyVersion>2.1.1.0</AssemblyVersion>
15-
<FileVersion>2.1.1.0</FileVersion>
16-
<TargetFrameworks>net8.0</TargetFrameworks>
14+
<AssemblyVersion>2.1.2.0</AssemblyVersion>
15+
<FileVersion>2.1.2.0</FileVersion>
16+
<TargetFramework>net8.0</TargetFramework>
1717
</PropertyGroup>
1818

1919
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">

0 commit comments

Comments
 (0)