Skip to content

Commit

Permalink
Change target framework to netcoreapp3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
josefpihrt committed Jan 15, 2022
1 parent 2afae94 commit c28715b
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion src/Tests/TestConsole/TestConsole.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.1</TargetFramework>
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>

<PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/Tools/AddCodeFileHeader/AddCodeFileHeader.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.1</TargetFramework>
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>

<PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/Tools/Cleaner/Cleaner.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.1</TargetFramework>
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>

<PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/Tools/CodeGenerator/CodeGenerator.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.1</TargetFramework>
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>

<PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/Tools/LogParser/LogParser.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.1</TargetFramework>
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/Tools/TestCodeGenerator/TestCodeGenerator.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.1</TargetFramework>
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>

<PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/Tools/VersionUpdater/VersionUpdater.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.1</TargetFramework>
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion tools/build.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ if errorlevel 1 (
)

"..\src\Tools\MetadataGenerator\bin\Release\net48\Roslynator.MetadataGenerator.exe" "..\src"
dotnet "..\src\Tools\CodeGenerator\bin\Release\netcoreapp2.1\Roslynator.CodeGenerator.dll" "..\src"
dotnet "..\src\Tools\CodeGenerator\bin\Release\netcoreapp3.1\Roslynator.CodeGenerator.dll" "..\src"

%_msbuildPath% "..\src\Roslynator.sln" ^
/t:Clean ^
Expand Down
2 changes: 1 addition & 1 deletion tools/generate_code.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ set _programFiles=%ProgramFiles%
/v:minimal ^
/m

dotnet "..\src\Tools\CodeGenerator\bin\Debug\netcoreapp2.1\Roslynator.CodeGenerator.dll" "..\src"
dotnet "..\src\Tools\CodeGenerator\bin\Debug\netcoreapp3.1\Roslynator.CodeGenerator.dll" "..\src"

pause
2 changes: 1 addition & 1 deletion tools/generate_test_files.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

set /p _ids=Enter ID(s):

dotnet "..\src\Tools\TestCodeGenerator\bin\Debug\netcoreapp2.1\TestCodeGenerator.dll" "..\src" %_ids%
dotnet "..\src\Tools\TestCodeGenerator\bin\Debug\netcoreapp3.1\TestCodeGenerator.dll" "..\src" %_ids%

pause
2 changes: 1 addition & 1 deletion tools/report_analyzers_execution_time.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ if errorlevel 1 (
/v:minimal ^
/m

dotnet "..\src\Tools\LogParser\bin\Release\netcoreapp2.1\LogParser.dll" "msbuild.log"
dotnet "..\src\Tools\LogParser\bin\Release\netcoreapp3.1\LogParser.dll" "msbuild.log"

pause

0 comments on commit c28715b

Please sign in to comment.