Skip to content

Commit 99c47d3

Browse files
committed
Refactor project files and adjust dependencies
Moved `Microsoft.CodeAnalysis.CSharp` dependency from `Editor.Localization.Shared.csproj` to `Editor.Localization.SourceGenerators.csproj` to reflect its usage requirements. Standardized formatting of closing `</Project>` tags across `Editor.Localization.Analyzers.csproj`, `Editor.Localization.Attributes.csproj`, `Editor.Localization.Shared.csproj`, and `Editor.Localization.SourceGenerators.csproj` for consistency.
1 parent 0ffe753 commit 99c47d3

File tree

4 files changed

+5
-8
lines changed

4 files changed

+5
-8
lines changed

Localization/Editor.Localization.Analyzers/Editor.Localization.Analyzers.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@
1818
<ProjectReference Include="..\Editor.Localization.Shared\Editor.Localization.Shared.csproj" />
1919
</ItemGroup>
2020

21-
</Project>
21+
</Project>

Localization/Editor.Localization.Attributes/Editor.Localization.Attributes.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
<RootNamespace>Editor.Localization.Attributes</RootNamespace>
66
</PropertyGroup>
77

8-
</Project>
8+
</Project>

Localization/Editor.Localization.Shared/Editor.Localization.Shared.csproj

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,4 @@
66
<RootNamespace>Editor.Localization.Shared</RootNamespace>
77
</PropertyGroup>
88

9-
<ItemGroup>
10-
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.14.0" />
11-
</ItemGroup>
12-
13-
</Project>
9+
</Project>

Localization/Editor.Localization.SourceGenerators/Editor.Localization.SourceGenerators.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,11 @@
1111
<PrivateAssets>all</PrivateAssets>
1212
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1313
</PackageReference>
14+
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.14.0" />
1415
</ItemGroup>
1516

1617
<ItemGroup>
1718
<ProjectReference Include="..\Editor.Localization.Shared\Editor.Localization.Shared.csproj" />
1819
</ItemGroup>
1920

20-
</Project>
21+
</Project>

0 commit comments

Comments
 (0)