Skip to content

Commit

Permalink
Update csproj
Browse files Browse the repository at this point in the history
  • Loading branch information
JunaMeinhold committed May 28, 2024
1 parent 4f5e287 commit e39f355
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 7 deletions.
12 changes: 9 additions & 3 deletions Hexa.Protobuf.Analyzer/Hexa.Protobuf.Analyzer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,8 @@
<PackageVersion>1.0.0.0</PackageVersion>
<Authors>Juna</Authors>
<AssemblyName>Hexa.Protobuf.Analyzers</AssemblyName>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/HexaEngine/HexaEngine</PackageProjectUrl>
<RepositoryUrl>https://github.com/HexaEngine/HexaEngine</RepositoryUrl>
<PackageProjectUrl>https://github.com/HexaEngine/Hexa.Protobuf</PackageProjectUrl>
<RepositoryUrl>https://github.com/HexaEngine/Hexa.Protobuf</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<Description>A code generator for generating binary serialization.</Description>
Expand All @@ -28,8 +27,15 @@
<GenerateAssemblyCopyrightAttribute>false</GenerateAssemblyCopyrightAttribute>
<DevelopmentDependency>true</DevelopmentDependency>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>

<ItemGroup>
<Content Include="../LICENSE" Pack="true" PackagePath="\" />
<Content Include="../README.md" Pack="true" PackagePath="\" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.9.2" PrivateAssets="all" />
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="3.3.4" PrivateAssets="all" />
Expand Down
14 changes: 10 additions & 4 deletions Hexa.Protobuf/Hexa.Protobuf.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,8 @@
<PackageVersion>1.0.0.0</PackageVersion>
<Authors>Juna</Authors>
<AssemblyName>Hexa.Protobuf</AssemblyName>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/HexaEngine/HexaEngine</PackageProjectUrl>
<RepositoryUrl>https://github.com/HexaEngine/HexaEngine</RepositoryUrl>
<PackageProjectUrl>https://github.com/HexaEngine/Hexa.Protobuf</PackageProjectUrl>
<RepositoryUrl>https://github.com/HexaEngine/Hexa.Protobuf</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<Description>A code generator for generating binary serialization.</Description>
Expand All @@ -25,10 +24,17 @@
<GenerateAssemblyDescriptionAttribute>false</GenerateAssemblyDescriptionAttribute>
<GenerateAssemblyCopyrightAttribute>false</GenerateAssemblyCopyrightAttribute>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\Hexa.Protobuf.Analyzer\Hexa.Protobuf.Analyzer.csproj" />
<Content Include="../LICENSE" Pack="true" PackagePath="\" />
<Content Include="../README.md" Pack="true" PackagePath="\" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\Hexa.Protobuf.Analyzer\Hexa.Protobuf.Analyzer.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
</ItemGroup>

</Project>

0 comments on commit e39f355

Please sign in to comment.