Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
zilf
zilf
Commits
c9c1b0546e37
Commit
37df7a9c
authored
Jan 09, 2023
by
Tara McGrew
Browse files
Updated developer name and refreshed license headers.
parent
a571bcfc8047
Changes
449
Hide whitespace changes
Inline
Side-by-side
CurrentVersion.props
View file @
c9c1b054
...
...
@@ -16,7 +16,7 @@
<Product>
ZILF
</Product>
<Company
/>
<Version>
$(MajorVersion).$(MinorVersion)
</Version>
<Authors>
Jesse
McGrew
</Authors>
<Copyright>
Copyright 2010-
2019 Jesse
McGrew
</Copyright>
<Authors>
Tara
McGrew
</Authors>
<Copyright>
Copyright 2010-
$([System.DateTime]::Now.ToString('yyyy')) Tara
McGrew
</Copyright>
</PropertyGroup>
</Project>
Zilf.licenseheader
→
Zilf.
sln.
licenseheader
View file @
c9c1b054
extensions: designer.cs generated.cs
extensions: designer.cs generated.cs
extensions: .cs .cpp .h .g
/* Copyright 2010-%CurrentYear%
Jesse
McGrew
/* Copyright 2010-%CurrentYear%
Tara
McGrew
*
* This file is part of ZILF.
*
...
...
@@ -20,7 +20,7 @@ extensions: .cs .cpp .h .g
extensions: .xml .config .xsd
<!--
Copyright 2010-%CurrentYear%
Jesse
McGrew
Copyright 2010-%CurrentYear%
Tara
McGrew
This file is part of ZILF.
...
...
@@ -41,7 +41,7 @@ along with ZILF. If not, see <http://www.gnu.org/licenses/>.
extensions: .py
#!/usr/bin/env python3
#
# Copyright 2010-%CurrentYear%
Jesse
McGrew
# Copyright 2010-%CurrentYear%
Tara
McGrew
#
# This file is part of ZILF.
#
...
...
src/Analyzers/ZilfAnalyzers.Test/ErrorExceptionUsageTests.cs
View file @
c9c1b054
using
System.Threading.Tasks
;
/* Copyright 2010-2023 Tara McGrew
*
* This file is part of ZILF.
*
* ZILF is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* ZILF is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with ZILF. If not, see <http://www.gnu.org/licenses/>.
*/
using
System.Threading.Tasks
;
using
Microsoft.CodeAnalysis
;
using
Microsoft.CodeAnalysis.CodeFixes
;
using
Microsoft.CodeAnalysis.Diagnostics
;
...
...
src/Analyzers/ZilfAnalyzers.Test/Helpers/CodeFixVerifier.Helper.cs
View file @
c9c1b054
using
Microsoft.CodeAnalysis
;
/* Copyright 2010-2023 Tara McGrew
*
* This file is part of ZILF.
*
* ZILF is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* ZILF is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with ZILF. If not, see <http://www.gnu.org/licenses/>.
*/
using
Microsoft.CodeAnalysis
;
using
Microsoft.CodeAnalysis.CodeActions
;
using
Microsoft.CodeAnalysis.Formatting
;
using
Microsoft.CodeAnalysis.Simplification
;
...
...
src/Analyzers/ZilfAnalyzers.Test/Helpers/DiagnosticResult.cs
View file @
c9c1b054
using
System
;
/* Copyright 2010-2023 Tara McGrew
*
* This file is part of ZILF.
*
* ZILF is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* ZILF is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with ZILF. If not, see <http://www.gnu.org/licenses/>.
*/
using
System
;
using
Microsoft.CodeAnalysis
;
// ReSharper disable once CheckNamespace
...
...
src/Analyzers/ZilfAnalyzers.Test/Helpers/DiagnosticVerifier.Helper.cs
View file @
c9c1b054
using
Microsoft.CodeAnalysis
;
/* Copyright 2010-2023 Tara McGrew
*
* This file is part of ZILF.
*
* ZILF is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* ZILF is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with ZILF. If not, see <http://www.gnu.org/licenses/>.
*/
using
Microsoft.CodeAnalysis
;
using
Microsoft.CodeAnalysis.CSharp
;
using
Microsoft.CodeAnalysis.Diagnostics
;
using
Microsoft.CodeAnalysis.Text
;
...
...
src/Analyzers/ZilfAnalyzers.Test/Helpers/DiffHelper.cs
View file @
c9c1b054
using
Microsoft.VisualStudio.TestTools.UnitTesting
;
/* Copyright 2010-2023 Tara McGrew
*
* This file is part of ZILF.
*
* ZILF is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* ZILF is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with ZILF. If not, see <http://www.gnu.org/licenses/>.
*/
using
Microsoft.VisualStudio.TestTools.UnitTesting
;
using
System
;
using
System.Globalization
;
using
System.IO
;
...
...
src/Analyzers/ZilfAnalyzers.Test/MessageConstantTests.cs
View file @
c9c1b054
using
System.Threading.Tasks
;
/* Copyright 2010-2023 Tara McGrew
*
* This file is part of ZILF.
*
* ZILF is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* ZILF is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with ZILF. If not, see <http://www.gnu.org/licenses/>.
*/
using
System.Threading.Tasks
;
using
Microsoft.CodeAnalysis
;
using
Microsoft.CodeAnalysis.CodeFixes
;
using
Microsoft.CodeAnalysis.Diagnostics
;
...
...
src/Analyzers/ZilfAnalyzers.Test/Verifiers/CodeFixVerifier.cs
View file @
c9c1b054
using
Microsoft.CodeAnalysis
;
/* Copyright 2010-2023 Tara McGrew
*
* This file is part of ZILF.
*
* ZILF is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* ZILF is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with ZILF. If not, see <http://www.gnu.org/licenses/>.
*/
using
Microsoft.CodeAnalysis
;
using
Microsoft.CodeAnalysis.CodeActions
;
using
Microsoft.CodeAnalysis.CodeFixes
;
using
Microsoft.CodeAnalysis.Diagnostics
;
...
...
src/Analyzers/ZilfAnalyzers.Test/Verifiers/DiagnosticVerifier.cs
View file @
c9c1b054
using
Microsoft.CodeAnalysis
;
/* Copyright 2010-2023 Tara McGrew
*
* This file is part of ZILF.
*
* ZILF is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* ZILF is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with ZILF. If not, see <http://www.gnu.org/licenses/>.
*/
using
Microsoft.CodeAnalysis
;
using
Microsoft.CodeAnalysis.Diagnostics
;
using
Microsoft.VisualStudio.TestTools.UnitTesting
;
using
System.Collections.Generic
;
...
...
src/Analyzers/ZilfAnalyzers.Test/ZilObjectTests.cs
View file @
c9c1b054
using
System.Threading.Tasks
;
/* Copyright 2010-2023 Tara McGrew
*
* This file is part of ZILF.
*
* ZILF is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* ZILF is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with ZILF. If not, see <http://www.gnu.org/licenses/>.
*/
using
System.Threading.Tasks
;
using
Microsoft.CodeAnalysis
;
using
Microsoft.CodeAnalysis.Diagnostics
;
using
Microsoft.VisualStudio.TestTools.UnitTesting
;
...
...
src/Analyzers/ZilfAnalyzers.Test/ZilfAnalyzers.Test.csproj
View file @
c9c1b054
...
...
@@ -5,6 +5,14 @@
<Nullable>enable</Nullable>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net5.0|AnyCPU'">
<WarningsNotAsErrors>VSTHRD200</WarningsNotAsErrors>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net5.0|AnyCPU'">
<WarningsNotAsErrors>VSTHRD200</WarningsNotAsErrors>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="JunitXml.TestLogger" Version="3.0.98" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="3.10.0" />
...
...
src/Analyzers/ZilfAnalyzers/DiagnosticIds.cs
View file @
c9c1b054
/* Copyright 2010-2023 Tara McGrew
*
* This file is part of ZILF.
*
* ZILF is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* ZILF is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with ZILF. If not, see <http://www.gnu.org/licenses/>.
*/
namespace
ZilfAnalyzers
{
public
static
class
DiagnosticIds
...
...
src/Analyzers/ZilfAnalyzers/ErrorExceptionUsageAnalyzer.cs
View file @
c9c1b054
/* Copyright 2010-2023 Tara McGrew
*
* This file is part of ZILF.
*
* ZILF is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* ZILF is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with ZILF. If not, see <http://www.gnu.org/licenses/>.
*/
using
System.Collections.Generic
;
using
System.Collections.Immutable
;
using
System.Diagnostics.CodeAnalysis
;
...
...
src/Analyzers/ZilfAnalyzers/ErrorExceptionUsageCodeFixProvider.cs
View file @
c9c1b054
using
System
;
/* Copyright 2010-2023 Tara McGrew
*
* This file is part of ZILF.
*
* ZILF is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* ZILF is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with ZILF. If not, see <http://www.gnu.org/licenses/>.
*/
using
System
;
using
System.Collections.Generic
;
using
System.Collections.Immutable
;
using
System.Composition
;
...
...
src/Analyzers/ZilfAnalyzers/MessageConstantAnalyzer.cs
View file @
c9c1b054
/* Copyright 2010-2023 Tara McGrew
*
* This file is part of ZILF.
*
* ZILF is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* ZILF is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with ZILF. If not, see <http://www.gnu.org/licenses/>.
*/
using
System.Collections.Generic
;
using
System.Collections.Immutable
;
using
System.Linq
;
...
...
src/Analyzers/ZilfAnalyzers/MessageConstantCodeFixProvider.cs
View file @
c9c1b054
using
System.Collections.Immutable
;
/* Copyright 2010-2023 Tara McGrew
*
* This file is part of ZILF.
*
* ZILF is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* ZILF is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with ZILF. If not, see <http://www.gnu.org/licenses/>.
*/
using
System.Collections.Immutable
;
using
System.Composition
;
using
System.Diagnostics
;
using
System.Linq
;
...
...
src/Analyzers/ZilfAnalyzers/ZilObjectAnalyzer.cs
View file @
c9c1b054
using
System.Collections.Generic
;
/* Copyright 2010-2023 Tara McGrew
*
* This file is part of ZILF.
*
* ZILF is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* ZILF is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with ZILF. If not, see <http://www.gnu.org/licenses/>.
*/
using
System.Collections.Generic
;
using
System.Collections.Immutable
;
using
System.Diagnostics
;
using
System.Diagnostics.CodeAnalysis
;
...
...
src/Analyzers/ZilfAnalyzers/ZilfAnalyzers.csproj
View file @
c9c1b054
...
...
@@ -10,22 +10,14 @@
<PropertyGroup>
<PackageId>ZilfAnalyzers</PackageId>
<PackageVersion>1.0.0.0</PackageVersion>
<Authors>Jesse</Authors>
<!--<PackageLicenseUrl>http://LICENSE_URL_HERE_OR_DELETE_THIS_LINE</PackageLicenseUrl>
<PackageProjectUrl>http://PROJECT_URL_HERE_OR_DELETE_THIS_LINE</PackageProjectUrl>
<PackageIconUrl>http://ICON_URL_HERE_OR_DELETE_THIS_LINE</PackageIconUrl>
<RepositoryUrl>http://REPOSITORY_URL_HERE_OR_DELETE_THIS_LINE</RepositoryUrl>-->
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<Description>ZilfAnalyzers</Description>
<!--<PackageReleaseNotes>Summary of changes made in this release of the package.</PackageReleaseNotes>-->
<Copyright>Copyright</Copyright>
<PackageTags>ZilfAnalyzers, analyzers</PackageTags>
<NoPackageAnalysis>true</NoPackageAnalysis>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="3.10.0" PrivateAssets="all" />
<!--<PackageReference Update="NETStandard.Library" PrivateAssets="all" />-->
</ItemGroup>
<ItemGroup>
...
...
src/Analyzers/ZilfAnalyzers/ZilfFacts.cs
View file @
c9c1b054
using
System.Collections.Immutable
;
/* Copyright 2010-2023 Tara McGrew
*
* This file is part of ZILF.
*
* ZILF is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* ZILF is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with ZILF. If not, see <http://www.gnu.org/licenses/>.
*/
using
System.Collections.Immutable
;
namespace
ZilfAnalyzers
{
...
...
Prev
1
2
3
4
5
…
23
Next
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment