File tree 2 files changed +22
-8
lines changed
Fundament.CapstoneCS.Generator 2 files changed +22
-8
lines changed Original file line number Diff line number Diff line change 1
1
<Project >
2
- <!-- See https://aka.ms/dotnet/msbuild/customize for more details on customizing your build -->
3
- <PropertyGroup >
2
+ <PropertyGroup Label =" Versions" >
3
+ <!-- Custom msbuild properties used in the project -->
4
+ <RepositoryTargetFrameworkVersion >net8.0</RepositoryTargetFrameworkVersion >
5
+ </PropertyGroup >
6
+
7
+ <!-- Settings for all projects. Can be overridden in the .csproj file. -->
8
+ <PropertyGroup Label =" Global Settings" >
9
+ <TargetFramework >$(RepositoryTargetFrameworkVersion)</TargetFramework >
10
+ <RollForward >LatestMinor</RollForward >
4
11
12
+ <!-- Implicitly adds some using directives for System.* namespaces. -->
13
+ <ImplicitUsings >enable</ImplicitUsings >
14
+ <!-- Enable null-checking for everything. -->
15
+ <Nullable >enable</Nullable >
5
16
17
+ <!-- Turn on code analysis.-->
18
+ <AnalysisMode >Recommended</AnalysisMode >
19
+ <EnforceCodeStyleInBuild >true</EnforceCodeStyleInBuild >
20
+ <EnableNETAnalyzers >true</EnableNETAnalyzers >
21
+
22
+ </PropertyGroup >
23
+
24
+ <PropertyGroup Condition =" '$(GITHUB_ACTIONS)' == 'true'" >
25
+ <ContinuousIntegrationBuild >true</ContinuousIntegrationBuild >
6
26
</PropertyGroup >
7
27
</Project >
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
3
- <PropertyGroup >
4
- <TargetFramework >net9.0</TargetFramework >
5
- <ImplicitUsings >enable</ImplicitUsings >
6
- <Nullable >enable</Nullable >
7
- </PropertyGroup >
8
-
9
3
</Project >
You can’t perform that action at this time.
0 commit comments