Skip to content

Commit

Permalink
Update version to 3.0.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
josefpihrt committed Jun 16, 2020
1 parent fcab5c7 commit 8fadfa9
Show file tree
Hide file tree
Showing 30 changed files with 94 additions and 38 deletions.
21 changes: 21 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
### 3.0.0 (2020-06-16)

* Update references to Roslyn API to 3.5.0
* Release .NET Core Global Tool [Roslynator.DotNet.Cli](https://www.nuget.org/packages/roslynator.dotnet.cli)
* Introduce concept of "[Analyzer Options](https://github.com/JosefPihrt/Roslynator/blob/master/docs/AnalyzerOptions.md)"
* Reassign ID for some analyzers.
* See "[How to: Migrate Analyzers to Version 3.0](https://github.com/JosefPihrt/Roslynator/blob/master/docs/HowToMigrateAnalyzersToVersion3.md)"
* Remove references to Roslynator assemblies from omnisharp.json on uninstall (VS Code)

#### New Analyzers

* [RCS0048](https://github.com/JosefPihrt/Roslynator/blob/master/docs/analyzers/RCS0048.md) (Remove newlines from initializer with single\-line expression).
* [RCS0049](https://github.com/JosefPihrt/Roslynator/blob/master/docs/analyzers/RCS0049.md) (Add empty line after top comment).
* [RCS0050](https://github.com/JosefPihrt/Roslynator/blob/master/docs/analyzers/RCS0050.md) (Add empty line before top declaration).
* [RCS0051](https://github.com/JosefPihrt/Roslynator/blob/master/docs/analyzers/RCS0051.md) (Add newline between closing brace and 'while' keyword \(or vice versa\)).
* [RCS1246](https://github.com/JosefPihrt/Roslynator/blob/master/docs/analyzers/RCS1246.md) (Use element access).

#### New Refactorings

* [RR0214](https://github.com/JosefPihrt/Roslynator/blob/master/docs/refactorings/RR0214.md) (Convert 'switch' expression to 'switch' statement).

### 2.9.0 (2020-03-13)

* Switch to Roslyn 3.x libraries
Expand Down
2 changes: 1 addition & 1 deletion src/Analyzers.CodeFixes/Analyzers.CodeFixes.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
</PropertyGroup>

<PropertyGroup>
<Version>2.9.0.0</Version>
<Version>3.0.0.0</Version>
<AssemblyName>Roslynator.CSharp.Analyzers.CodeFixes</AssemblyName>
<RootNamespace>Roslynator.CSharp</RootNamespace>
<NuspecFile>Roslynator.Analyzers.nuspec</NuspecFile>
Expand Down
8 changes: 4 additions & 4 deletions src/Analyzers.CodeFixes/Roslynator.Analyzers.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata minClientVersion="2.8">
<id>Roslynator.Analyzers</id>
<version>2.3.0</version>
<version>3.0.0-rc</version>
<authors>Josef Pihrt</authors>
<owners>Josef Pihrt</owners>
<license type="expression">Apache-2.0</license>
Expand All @@ -11,16 +11,16 @@
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>A collection of 200+ analyzers for C#, powered by Roslyn.

- This package cannot be used with Visual Studio 2015.
- This package is dependent on Microsoft.CodeAnalysis.CSharp.Workspaces 2.3.0.</description>
- This package cannot be used with Visual Studio 2017.
- This package is dependent on Microsoft.CodeAnalysis.CSharp.Workspaces 3.5.0.</description>
<summary>A collection of 200+ analyzers for C#, powered by Roslyn.</summary>
<copyright>Copyright (c) 2016-2020 Josef Pihrt</copyright>
<tags>Roslyn Analyzer Refactoring Productivity CodeAnalysis C# CSharp</tags>
<developmentDependency>true</developmentDependency>
<repository type="git" url="https://github.com/JosefPihrt/Roslynator.git" />
</metadata>
<files>
<file src="bin\$Configuration$\netstandard1.3\Roslynator*.dll" target="analyzers\dotnet\cs" />
<file src="bin\$Configuration$\netstandard2.0\Roslynator*.dll" target="analyzers\dotnet\cs" />
<file src="tools\*.ps1" target="tools\" />
<file src="..\..\images\icon.png" target="" />
</files>
Expand Down
2 changes: 1 addition & 1 deletion src/Analyzers/Analyzers.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
</PropertyGroup>

<PropertyGroup>
<Version>2.9.0.0</Version>
<Version>3.0.0.0</Version>
<AssemblyName>Roslynator.CSharp.Analyzers</AssemblyName>
<RootNamespace>Roslynator.CSharp</RootNamespace>
<IsPackable>false</IsPackable>
Expand Down
2 changes: 1 addition & 1 deletion src/CSharp.Workspaces/CSharp.Workspaces.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
</PropertyGroup>

<PropertyGroup>
<Version>1.0.0.23</Version>
<Version>1.0.0.24</Version>
<AssemblyName>Roslynator.CSharp.Workspaces</AssemblyName>
<RootNamespace>Roslynator</RootNamespace>
<CodeAnalysisRuleSet>..\api.ruleset</CodeAnalysisRuleSet>
Expand Down
2 changes: 1 addition & 1 deletion src/CSharp/CSharp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
</PropertyGroup>

<PropertyGroup>
<Version>1.0.0.23</Version>
<Version>1.0.0.24</Version>
<AssemblyName>Roslynator.CSharp</AssemblyName>
<RootNamespace>Roslynator</RootNamespace>
<CodeAnalysisRuleSet>..\api.ruleset</CodeAnalysisRuleSet>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>A collection of analyzers for Roslyn API.</description>
<summary>A collection of analyzers for Roslyn API.</summary>
<copyright>Copyright (c) 2016-2019 Josef Pihrt</copyright>
<copyright>Copyright (c) 2016-2020 Josef Pihrt</copyright>
<tags>Roslyn Analyzer CodeAnalysis C# CSharp</tags>
<developmentDependency>true</developmentDependency>
<repository type="git" url="http://github.com/JosefPihrt/Roslynator.git" />
</metadata>
<files>
<file src="bin\$Configuration$\netstandard1.3\Roslynator*.dll" target="analyzers\dotnet\cs" />
<file src="bin\$Configuration$\netstandard2.0\Roslynator*.dll" target="analyzers\dotnet\cs" />
<file src="tools\*.ps1" target="tools\" />
<file src="..\..\images\icon.png" target="" />
</files>
Expand Down
2 changes: 1 addition & 1 deletion src/CodeFixes/CodeFixes.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
</PropertyGroup>

<PropertyGroup>
<Version>2.9.0.0</Version>
<Version>3.0.0.0</Version>
<AssemblyName>Roslynator.CSharp.CodeFixes</AssemblyName>
<RootNamespace>Roslynator.CSharp.CodeFixes</RootNamespace>
<NuspecFile>Roslynator.CodeFixes.nuspec</NuspecFile>
Expand Down
2 changes: 1 addition & 1 deletion src/Common/Common.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
</PropertyGroup>

<PropertyGroup>
<Version>2.9.0.0</Version>
<Version>3.0.0.0</Version>
<AssemblyName>Roslynator.Common</AssemblyName>
<RootNamespace>Roslynator</RootNamespace>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/Core/Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
</PropertyGroup>

<PropertyGroup>
<Version>1.0.0.23</Version>
<Version>1.0.0.24</Version>
<AssemblyName>Roslynator.Core</AssemblyName>
<RootNamespace>Roslynator</RootNamespace>
<CodeAnalysisRuleSet>..\api.ruleset</CodeAnalysisRuleSet>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
</PropertyGroup>

<PropertyGroup>
<Version>1.0.0.1</Version>
<Version>1.0.0.2</Version>
<AssemblyName>Roslynator.Formatting.Analyzers.CodeFixes</AssemblyName>
<RootNamespace>Roslynator.Formatting</RootNamespace>
<NuspecFile>Roslynator.Formatting.Analyzers.nuspec</NuspecFile>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata minClientVersion="2.8">
<id>Roslynator.Formatting.Analyzers</id>
<version>1.0.0-rc</version>
<version>1.0.0-rc2</version>
<authors>Josef Pihrt</authors>
<owners>Josef Pihrt</owners>
<license type="expression">Apache-2.0</license>
Expand All @@ -11,13 +11,13 @@
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>A collection of formatting analyzers, powered by Roslyn.</description>
<summary>A collection of formatting analyzers, powered by Roslyn.</summary>
<copyright>Copyright (c) 2016-2019 Josef Pihrt</copyright>
<copyright>Copyright (c) 2016-2020 Josef Pihrt</copyright>
<tags>Roslyn Analyzer Formatting Productivity CodeAnalysis C# CSharp</tags>
<developmentDependency>true</developmentDependency>
<repository type="git" url="https://github.com/JosefPihrt/Roslynator.git" />
</metadata>
<files>
<file src="bin\$Configuration$\netstandard1.3\Roslynator*.dll" target="analyzers\dotnet\cs" />
<file src="bin\$Configuration$\netstandard2.0\Roslynator*.dll" target="analyzers\dotnet\cs" />
<file src="tools\*.ps1" target="tools\" />
<file src="..\..\images\icon.png" target="" />
</files>
Expand Down
2 changes: 1 addition & 1 deletion src/Formatting.Analyzers/Formatting.Analyzers.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
</PropertyGroup>

<PropertyGroup>
<Version>1.0.0.1</Version>
<Version>1.0.0.2</Version>
<AssemblyName>Roslynator.Formatting.Analyzers</AssemblyName>
<RootNamespace>Roslynator.Formatting</RootNamespace>
<IsPackable>false</IsPackable>
Expand Down
2 changes: 1 addition & 1 deletion src/Refactorings/Refactorings.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
</PropertyGroup>

<PropertyGroup>
<Version>2.9.0.0</Version>
<Version>3.0.0.0</Version>
<AssemblyName>Roslynator.CSharp.Refactorings</AssemblyName>
<RootNamespace>Roslynator.CSharp.Refactorings</RootNamespace>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/VisualBasic.Workspaces/VisualBasic.Workspaces.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
</PropertyGroup>

<PropertyGroup>
<Version>1.0.0.23</Version>
<Version>1.0.0.24</Version>
<AssemblyName>Roslynator.VisualBasic.Workspaces</AssemblyName>
<RootNamespace>Roslynator</RootNamespace>
<CodeAnalysisRuleSet>..\api.ruleset</CodeAnalysisRuleSet>
Expand Down
2 changes: 1 addition & 1 deletion src/VisualBasic/VisualBasic.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
</PropertyGroup>

<PropertyGroup>
<Version>1.0.0.23</Version>
<Version>1.0.0.24</Version>
<AssemblyName>Roslynator.VisualBasic</AssemblyName>
<RootNamespace>Roslynator</RootNamespace>
<CodeAnalysisRuleSet>..\api.ruleset</CodeAnalysisRuleSet>
Expand Down
2 changes: 1 addition & 1 deletion src/VisualStudio.Common/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,5 @@
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("2.9.0.0")]
[assembly: AssemblyVersion("3.0.0.0")]
//[assembly: AssemblyFileVersion("1.0.0.0")]
2 changes: 1 addition & 1 deletion src/VisualStudio.Refactorings/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@
// Build Number
// Revision
//
[assembly: AssemblyVersion("2.9.0.0")]
[assembly: AssemblyVersion("3.0.0.0")]
//[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: NeutralResourcesLanguage("en-US")]
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
<Metadata>
<Identity Id="d85083bb-3f1d-44ec-891d-9cdaed173f0f" Version="2.9.0" Language="en-US" Publisher="Josef Pihrt" />
<Identity Id="d85083bb-3f1d-44ec-891d-9cdaed173f0f" Version="3.0.0" Language="en-US" Publisher="Josef Pihrt" />
<DisplayName>Roslynator Refactorings 2019</DisplayName>
<Description xml:space="preserve">A collection of 300+ refactorings and fixes for C#, powered by Roslyn.</Description>
<MoreInfo>http://github.com/JosefPihrt/Roslynator</MoreInfo>
Expand Down
2 changes: 1 addition & 1 deletion src/VisualStudio/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@
// Build Number
// Revision
//
[assembly: AssemblyVersion("2.9.0.0")]
[assembly: AssemblyVersion("3.0.0.0")]
//[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: NeutralResourcesLanguage("en-US")]
2 changes: 1 addition & 1 deletion src/VisualStudio/source.extension.vsixmanifest
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
<Metadata>
<Identity Id="d42db039-5432-4399-bb62-67a9b4c3b838" Version="2.9.0" Language="en-US" Publisher="Josef Pihrt" />
<Identity Id="d42db039-5432-4399-bb62-67a9b4c3b838" Version="3.0.0" Language="en-US" Publisher="Josef Pihrt" />
<DisplayName>Roslynator 2019</DisplayName>
<Description xml:space="preserve">A collection of 500+ analyzers, refactorings and fixes for C#, powered by Roslyn.</Description>
<MoreInfo>http://github.com/JosefPihrt/Roslynator</MoreInfo>
Expand Down
2 changes: 1 addition & 1 deletion src/VisualStudioCode/VisualStudioCode.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
</PropertyGroup>

<PropertyGroup>
<Version>2.9.0.0</Version>
<Version>3.0.0.0</Version>
<AssemblyName>Roslynator.VisualStudioCode</AssemblyName>
<RootNamespace>Roslynator</RootNamespace>
<IsPackable>false</IsPackable>
Expand Down
8 changes: 8 additions & 0 deletions src/VisualStudioCode/package/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## 3.0.0 (2020-06-16)

* Update references to Roslyn API to 3.5.0
* Introduce concept of "[Analyzer Options](https://github.com/JosefPihrt/Roslynator/blob/master/docs/AnalyzerOptions.md)"
* Reassign ID for some analyzers.
* See "[How to: Migrate Analyzers to Version 3.0](https://github.com/JosefPihrt/Roslynator/blob/master/docs/HowToMigrateAnalyzersToVersion3.md)"
* Remove references to Roslynator assemblies from omnisharp.json on uninstall

## 2.9.0 (2020-03-13)

* Switch to Roslyn 3.x libraries
Expand Down
2 changes: 1 addition & 1 deletion src/VisualStudioCode/package/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/VisualStudioCode/package/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"displayName": "Roslynator",
"description": "A collection of 500+ analyzers, refactorings and fixes for C#, powered by Roslyn.",
"icon": "images/icon.png",
"version": "2.9.0",
"version": "3.0.0",
"author": "Josef Pihrt",
"license": "SEE LICENSE IN LICENSE.TXT",
"homepage": "https://github.com/josefpihrt/roslynator",
Expand Down Expand Up @@ -85,4 +85,4 @@
"dependencies": {
"json5": "^2.1.1"
}
}
}
2 changes: 1 addition & 1 deletion src/Workspaces.Common/Workspaces.Common.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
</PropertyGroup>

<PropertyGroup>
<Version>2.9.0.0</Version>
<Version>3.0.0.0</Version>
<AssemblyName>Roslynator.Workspaces.Common</AssemblyName>
<RootNamespace>Roslynator</RootNamespace>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/Workspaces.Core/Workspaces.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
</PropertyGroup>

<PropertyGroup>
<Version>1.0.0.23</Version>
<Version>1.0.0.24</Version>
<AssemblyName>Roslynator.Workspaces.Core</AssemblyName>
<RootNamespace>Roslynator</RootNamespace>
<CodeAnalysisRuleSet>..\api.ruleset</CodeAnalysisRuleSet>
Expand Down
25 changes: 22 additions & 3 deletions tools/build.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,17 @@

set _msbuildPath="C:\Program Files\Microsoft Visual Studio\2019\Community\MSBuild\Current\Bin\MSBuild"
set _properties=Configuration=Release,Deterministic=true,TreatWarningsAsErrors=true,WarningsNotAsErrors=1591
set _version=2.9.0
set _outDir=..\out\Release
set _version=3.0.0

orang delete "..\src" -a d -n "bin,obj" l li e -i "packages,node_modules" l li e ne -t n --content-only -y su s

echo.

dotnet restore --force "..\src\Roslynator.sln"

dotnet restore "..\src\Tools\Tools.sln"

%_msbuildPath% "..\src\Tools\Tools.sln" ^
/t:Clean,Build ^
/p:%_properties% ^
Expand Down Expand Up @@ -96,7 +103,6 @@ if errorlevel 1 (
del /Q "..\src\Analyzers.CodeFixes\bin\Release\Roslynator.Analyzers.*.nupkg"
del /Q "..\src\CodeAnalysis.Analyzers.CodeFixes\bin\Release\Roslynator.CodeAnalysis.Analyzers.*.nupkg"
del /Q "..\src\Formatting.Analyzers.CodeFixes\bin\Release\Roslynator.Formatting.Analyzers.*.nupkg"
del /Q "..\src\CodeFixes\bin\Release\Roslynator.CodeFixes.*.nupkg"
del /Q "..\src\Core\bin\Release\Roslynator.Core.*.nupkg"
del /Q "..\src\Workspaces.Core\bin\Release\Roslynator.Workspaces.Core.*.nupkg"
del /Q "..\src\CSharp\bin\Release\Roslynator.CSharp.*.nupkg"
Expand All @@ -105,7 +111,6 @@ del /Q "..\src\CSharp.Workspaces\bin\Release\Roslynator.CSharp.Workspaces.*.nupk
dotnet pack -c Release --no-build -v normal "..\src\Analyzers.CodeFixes\Analyzers.CodeFixes.csproj"
dotnet pack -c Release --no-build -v normal "..\src\CodeAnalysis.Analyzers.CodeFixes\CodeAnalysis.Analyzers.CodeFixes.csproj"
dotnet pack -c Release --no-build -v normal "..\src\Formatting.Analyzers.CodeFixes\Formatting.Analyzers.CodeFixes.csproj"
dotnet pack -c Release --no-build -v normal "..\src\CodeFixes\CodeFixes.csproj"
dotnet pack -c Release --no-build -v normal "..\src\Core\Core.csproj"
dotnet pack -c Release --no-build -v normal "..\src\Workspaces.Core\Workspaces.Core.csproj"
dotnet pack -c Release --no-build -v normal "..\src\CSharp\CSharp.csproj"
Expand All @@ -114,5 +119,19 @@ dotnet pack -c Release --no-build -v normal "..\src\CSharp.Workspaces\CSharp.Wor
del /Q "..\src\VisualStudio\bin\Release\Roslynator.VisualStudio.*.vsix"
ren "..\src\VisualStudio\bin\Release\Roslynator.VisualStudio.vsix" "Roslynator.VisualStudio.%_version%.vsix"

md "%_outDir%"

del /Q "%_outDir%\*"

copy "..\src\VisualStudio\bin\Release\Roslynator.VisualStudio.%_version%.vsix" "%_outDir%"

copy "..\src\Analyzers.CodeFixes\bin\Release\Roslynator.Analyzers.*.nupkg" "%_outDir%"
copy "..\src\CodeAnalysis.Analyzers.CodeFixes\bin\Release\Roslynator.CodeAnalysis.Analyzers.*.nupkg" "%_outDir%"
copy "..\src\Formatting.Analyzers.CodeFixes\bin\Release\Roslynator.Formatting.Analyzers.*.nupkg" "%_outDir%"
copy "..\src\Core\bin\Release\Roslynator.Core.*.nupkg" "%_outDir%"
copy "..\src\Workspaces.Core\bin\Release\Roslynator.Workspaces.Core.*.nupkg" "%_outDir%"
copy "..\src\CSharp\bin\Release\Roslynator.CSharp.*.nupkg" "%_outDir%"
copy "..\src\CSharp.Workspaces\bin\Release\Roslynator.CSharp.Workspaces.*.nupkg" "%_outDir%"

echo OK
pause
8 changes: 8 additions & 0 deletions tools/build.debug.cmd
Original file line number Diff line number Diff line change
@@ -1,10 +1,18 @@
@echo off

set _outDir=..\out\Debug

"C:\Program Files\Microsoft Visual Studio\2019\Community\MSBuild\Current\Bin\MSBuild" "..\src\VisualStudio.sln" ^
/t:Clean,Build ^
/p:Configuration=Debug,RunCodeAnalysis=false,DeployExtension=false ^
/nr:false ^
/v:normal ^
/m

md "%_outDir%"

del /Q "%_outDir%\*"

copy "..\src\VisualStudio\bin\Debug\Roslynator.VisualStudio.vsix" "%_outDir%"

pause
6 changes: 3 additions & 3 deletions tools/update_version.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

rem dotnet install tool -g orang.dotnet.cli

set _apiVersion=1.0.0.23
set _version=2.9.0.0
set _version3=2.9.0
set _apiVersion=1.0.0.24
set _version=3.0.0.0
set _version3=3.0.0
set _root=..\src
set _options=from-file -t m r -y trim-line -v n -o "orang.log" v=di

Expand Down

0 comments on commit 8fadfa9

Please sign in to comment.