Skip to content

Commit

Permalink
Merge pull request #1040 from SMI/net6
Browse files Browse the repository at this point in the history
updated global.json to 6.0.102
  • Loading branch information
tznind committed Feb 10, 2022
2 parents 38b900d + e8e53b0 commit b0953a1
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 32 deletions.
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<OutputPath>bin\$(Platform)\$(Configuration)\</OutputPath>
<Platforms>x64</Platforms>
<SatelliteResourceLanguages>none</SatelliteResourceLanguages>
<TargetFramework>net5</TargetFramework>
<TargetFramework>net6</TargetFramework>
<TargetLatestRuntimePatch>true</TargetLatestRuntimePatch>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<!-- Many build warnings for missing docstrings when enabling this - we may want to fix and enable per-project where needed instead? -->
Expand Down
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"sdk": {
"version": "5.0.302",
"version": "6.0.102",
"rollForward": "minor"
}
}
1 change: 1 addition & 0 deletions news/1040-feature.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Updated to latest dotnet sdk (net6)
28 changes: 0 additions & 28 deletions src/common/Smi.Common/Helpers/IEnumerableExtensions.cs

This file was deleted.

4 changes: 2 additions & 2 deletions utils/runDotnetTests.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ def main() -> int:
cmd = _windows_bash_fixup(args.platform, cmd)
_run(cmd)

net5_glob = {Path(x) for x in glob.glob("**/net5", recursive=True)}
for build_dir in net5_glob:
net6_glob = {Path(x) for x in glob.glob("**/net6", recursive=True)}
for build_dir in net6_glob:
try:
os.symlink(
Path("data/microserviceConfigs/default.yaml").resolve(),
Expand Down

0 comments on commit b0953a1

Please sign in to comment.