Skip to content

Commit bb04c3e

Browse files
authored
🧹 chore: [MegaLinter] Apply [1] automatic fixes (#76)
Co-authored-by: TylerCarrol <25536704+TylerCarrol@users.noreply.github.com>
1 parent 691409e commit bb04c3e

3 files changed

Lines changed: 30 additions & 30 deletions

File tree

‎CHANGELOG.md‎

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -49,27 +49,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4949

5050
[0.4.7]: https://github.com/TJC-Tools/TJC.MVVM/compare/v0.4.6...v0.4.7
5151

52-
[0.4.6]: https://github.com/TJC-Tools/TJC.MVVM/compare/v0.4.5...v0.4.6
5352

54-
[0.4.5]: https://github.com/TJC-Tools/TJC.MVVM/compare/v0.4.4...v0.4.5
5553

56-
[0.4.4]: https://github.com/TJC-Tools/TJC.MVVM/compare/v0.4.3...v0.4.4
5754

5855
[0.4.3]: https://github.com/TJC-Tools/TJC.MVVM/compare/v0.4.2...v0.4.3
5956

6057
[0.4.2]: https://github.com/TJC-Tools/TJC.MVVM/compare/v0.4.1...v0.4.2
6158

62-
[0.4.1]: https://github.com/TJC-Tools/TJC.MVVM/compare/v0.4.0...v0.4.1
6359

64-
[0.4.0]: https://github.com/TJC-Tools/TJC.MVVM/compare/v0.3.1...v0.4.0
6560

6661
[0.3.1]: https://github.com/TJC-Tools/TJC.MVVM/compare/v0.3.0...v0.3.1
6762

6863
[0.3.0]: https://github.com/TJC-Tools/TJC.MVVM/compare/v0.2.2...v0.3.0
6964

70-
[0.2.2]: https://github.com/TJC-Tools/TJC.MVVM/compare/v0.2.1...v0.2.2
7165

72-
[0.2.1]: https://github.com/TJC-Tools/TJC.MVVM/compare/v0.2.0...v0.2.1
7366

7467
[0.2.0]: https://github.com/TJC-Tools/TJC.MVVM/compare/v0.1.8...v0.2.0
7568

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,21 @@
11
<Project Sdk="Microsoft.NET.Sdk">
2-
32
<PropertyGroup>
43
<TargetFramework>net8.0</TargetFramework>
54
<ImplicitUsings>enable</ImplicitUsings>
65
<Nullable>enable</Nullable>
7-
86
<IsPackable>false</IsPackable>
97
<IsTestProject>true</IsTestProject>
108
</PropertyGroup>
11-
129
<ItemGroup>
1310
<PackageReference Include="coverlet.collector" Version="6.0.2" />
1411
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
1512
<PackageReference Include="MSTest.TestAdapter" Version="3.5.2" />
1613
<PackageReference Include="MSTest.TestFramework" Version="3.6.1" />
1714
</ItemGroup>
18-
1915
<ItemGroup>
2016
<ProjectReference Include="..\TJC.MVVM\TJC.MVVM.csproj" />
2117
</ItemGroup>
22-
2318
<ItemGroup>
2419
<Using Include="Microsoft.VisualStudio.TestTools.UnitTesting" />
2520
</ItemGroup>
26-
2721
</Project>

‎TJC.MVVM/TJC.MVVM.csproj‎

Lines changed: 30 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@
88
<Description>Model-View-ViewModel</Description>
99
<Authors>Tyler Carrol</Authors>
1010
<PackageReadmeFile>README.md</PackageReadmeFile>
11-
<PackageLicenseFile>LICENSE</PackageLicenseFile>
11+
<PackageLicenseFile>LICENSE</PackageLicenseFile>
1212
<PackageReleaseNotes>$([System.IO.File]::ReadAllText("$(MSBuildProjectDirectory)/../CHANGELOG.md"))</PackageReleaseNotes>
1313
<RepositoryUrl>https://github.com/TJC-Tools/TJC.MVVM</RepositoryUrl>
1414
<GenerateDocumentationFile>true</GenerateDocumentationFile>
15-
</PropertyGroup>
15+
</PropertyGroup>
1616
<!-- INCLUDED FILES -->
1717
<ItemGroup>
1818
<None Remove="Nuget.config" />
@@ -31,7 +31,7 @@
3131
<Pack>True</Pack>
3232
<PackagePath>\</PackagePath>
3333
</None>
34-
<EmbeddedResource Include="..\LICENSE" />
34+
<EmbeddedResource Include="..\LICENSE" />
3535
</ItemGroup>
3636
<!-- DEPENDENCIES -->
3737
<ItemGroup>
@@ -45,40 +45,48 @@
4545
</AssemblyAttribute>
4646
</ItemGroup>
4747
<!-- TASKS -->
48-
<UsingTask TaskName="ReadFileContent" TaskFactory="RoslynCodeTaskFactory" AssemblyName="Microsoft.Build.Tasks.Core">
48+
<UsingTask
49+
TaskName="ReadFileContent"
50+
TaskFactory="RoslynCodeTaskFactory"
51+
AssemblyName="Microsoft.Build.Tasks.Core"
52+
>
4953
<ParameterGroup>
5054
<FilePath ParameterType="System.String" Required="true" />
5155
<Content Output="true" ParameterType="System.String" />
5256
</ParameterGroup>
5357
<Task>
5458
<Using Namespace="System.IO" />
5559
<Code Type="Fragment" Language="cs">
56-
<![CDATA[
57-
Content = File.ReadAllText(FilePath);
60+
<![CDATA[
61+
Content = File.ReadAllText(FilePath);
5862
]]>
5963
</Code>
6064
</Task>
6165
</UsingTask>
62-
<UsingTask TaskName="AppendNewLineAndFile" TaskFactory="RoslynCodeTaskFactory" AssemblyName="Microsoft.Build.Tasks.Core">
66+
<UsingTask
67+
TaskName="AppendNewLineAndFile"
68+
TaskFactory="RoslynCodeTaskFactory"
69+
AssemblyName="Microsoft.Build.Tasks.Core"
70+
>
6371
<ParameterGroup>
6472
<File1 ParameterType="System.String" Required="true" />
6573
<File2 ParameterType="System.String" Required="true" />
6674
</ParameterGroup>
6775
<Task>
6876
<Using Namespace="System.IO" />
6977
<Code Type="Fragment" Language="cs">
70-
<![CDATA[
71-
var text = Environment.NewLine;
72-
text += "===========================================================";
73-
text += Environment.NewLine;
74-
text += Environment.NewLine;
75-
text += File.ReadAllText(File2);
76-
text += Environment.NewLine;
77-
File.AppendAllText(File1, text);
78+
<![CDATA[
79+
var text = Environment.NewLine;
80+
text += "===========================================================";
81+
text += Environment.NewLine;
82+
text += Environment.NewLine;
83+
text += File.ReadAllText(File2);
84+
text += Environment.NewLine;
85+
File.AppendAllText(File1, text);
7886
]]>
7987
</Code>
8088
</Task>
81-
</UsingTask>
89+
</UsingTask>
8290
<!-- PRE-PACK -->
8391
<Target Name="CustomSetup" BeforeTargets="_IntermediatePack">
8492
<Message Text="=== CUSTOM SETUP ===" Importance="high" />
@@ -100,6 +108,11 @@
100108
<!-- Cleanup License File -->
101109
<Target Name="RestoreLicenseFile">
102110
<Message Text="Restore License File Contents" Importance="high" />
103-
<WriteLinesToFile File="..\LICENSE" Lines="$(OriginalLicenseLines)" Overwrite="true" Encoding="UTF-8" />
111+
<WriteLinesToFile
112+
File="..\LICENSE"
113+
Lines="$(OriginalLicenseLines)"
114+
Overwrite="true"
115+
Encoding="UTF-8"
116+
/>
104117
</Target>
105118
</Project>

0 commit comments

Comments
 (0)