Skip to content

Commit

Permalink
Fix RootNamespace and LangVersion
Browse files Browse the repository at this point in the history
  • Loading branch information
zspitz committed Jan 17, 2022
1 parent 6f0471d commit 2d44db4
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion 00_Utilities/DotnetUtils/DotnetUtils/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -216,8 +216,8 @@ void generateMissingProjs() {

void checkProjects() {
foreach (var info in infos) {
WriteLine(info.LangPath);
printProjectWarnings(info);
WriteLine();
}
}

Expand Down
1 change: 0 additions & 1 deletion 05_Bagels/csharp/Bagels.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework>
<RootNamespace>BasicComputerGames.Bagels</RootNamespace>
</PropertyGroup>

<ItemGroup>
Expand Down
3 changes: 2 additions & 1 deletion 06_Banner/vbnet/banner.vbproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<RootNamespace>banner</RootNamespace>
<RootNamespace>Banner</RootNamespace>
<TargetFramework>netcoreapp3.1</TargetFramework>
<LangVersion>16.9</LangVersion>
</PropertyGroup>

</Project>
3 changes: 2 additions & 1 deletion 08_Batnum/vbnet/batnum.vbproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<RootNamespace>batnum</RootNamespace>
<RootNamespace>Batnum</RootNamespace>
<TargetFramework>netcoreapp3.1</TargetFramework>
<LangVersion>16.9</LangVersion>
</PropertyGroup>

</Project>
1 change: 0 additions & 1 deletion 21_Calendar/csharp/Calendar.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework>
<RootNamespace>_21_calendar</RootNamespace>
</PropertyGroup>

</Project>
3 changes: 2 additions & 1 deletion 96_Word/vbnet/word.vbproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<RootNamespace>word</RootNamespace>
<RootNamespace>Word</RootNamespace>
<TargetFramework>netcoreapp3.1</TargetFramework>
<LangVersion>16.9</LangVersion>
</PropertyGroup>

</Project>

0 comments on commit 2d44db4

Please sign in to comment.