Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add net7 target framework #756

Merged
merged 7 commits into from
Nov 21, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
some last cleanup
belav committed Nov 21, 2022

Verified

This commit was signed with the committer’s verified signature.
tada5hi Peter
commit c412fac1ec52138cb5b1d2abf523656b89ddf639
2 changes: 1 addition & 1 deletion CSharpier.Build.props
Original file line number Diff line number Diff line change
@@ -7,4 +7,4 @@
<Description>CSharpier is an opinionated code formatter for c#.</Description>
<PackageIcon>logo.png</PackageIcon>
</PropertyGroup>
</Project>
</Project>
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
@@ -14,4 +14,4 @@
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
</Project>
</Project>
Original file line number Diff line number Diff line change
@@ -9,4 +9,3 @@
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.2.0" />
</ItemGroup>
</Project>

3 changes: 2 additions & 1 deletion Src/CSharpier.Playground/CSharpier.Playground.csproj
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk.Web">

<PropertyGroup>
<!-- dotnet doesn't like to run when TargetFrameworks is used, even if it is a single framework -->
<TargetFramework>$(TargetFrameworks)</TargetFramework>
<TypeScriptCompileBlocked>true</TypeScriptCompileBlocked>
<TypeScriptToolsVersion>Latest</TypeScriptToolsVersion>
<IsPackable>false</IsPackable>
<SpaRoot>ClientApp\</SpaRoot>
<DefaultItemExcludes>$(DefaultItemExcludes);$(SpaRoot)node_modules\**</DefaultItemExcludes>
<Nullable>disable</Nullable>
<TargetFramework>$(TargetFrameworks)</TargetFramework>
</PropertyGroup>

<ItemGroup>
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -2,4 +2,4 @@
"sdk": {
"version": "7.0.100"
}
}
}