Skip to content

Commit

Permalink
Update to .NET 7 RTM
Browse files Browse the repository at this point in the history
  • Loading branch information
RehanSaeed committed Nov 9, 2022
1 parent e7fee53 commit 6651074
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project>

<PropertyGroup Label="Build">
<LangVersion>preview</LangVersion>
<LangVersion>latest</LangVersion>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<AnalysisLevel>latest</AnalysisLevel>
<ImplicitUsings>enable</ImplicitUsings>
Expand Down
6 changes: 3 additions & 3 deletions build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,9 @@ Task("Test")
Configuration = configuration,
Loggers = new string[]
{
$"trx;LogFileName={project.GetFilenameWithoutExtension()}.trx",
$"junit;LogFileName={project.GetFilenameWithoutExtension()}.xml",
$"html;LogFileName={project.GetFilenameWithoutExtension()}.html",
$"trx;LogFilePrefix={project.GetFilenameWithoutExtension()}",
$"junit;LogFilePrefix={project.GetFilenameWithoutExtension()}",
$"html;LogFilePrefix={project.GetFilenameWithoutExtension()}",
},
NoBuild = true,
NoRestore = true,
Expand Down
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
"sdk": {
"allowPrerelease": false,
"rollForward": "latestMajor",
"version": "7.0.100-rc.1.22431.12"
"version": "7.0.100"
}
}

0 comments on commit 6651074

Please sign in to comment.