commented protobuf compilation

This commit is contained in:
Timerix 2025-05-23 03:06:29 +05:00
parent 36d39b524c
commit 8c23f974c3

View File

@ -14,15 +14,15 @@
<ItemGroup>
<PackageReference Include="DTLib.Web" Version="1.4.0" />
<PackageReference Include="Google.Protobuf" Version="3.31.0" />
<!-- <PackageReference Include="Google.Protobuf" Version="3.31.0" />-->
<PackageReference Include="sqlite-net-pcl" Version="1.9.172" />
</ItemGroup>
<ItemGroup>
<Compile Include="obj\Protobuf\*.g.cs" />
</ItemGroup>
<!-- <ItemGroup>-->
<!-- <Compile Include="obj\Protobuf\*.g.cs" />-->
<!-- </ItemGroup>-->
<Target Name="PreBuild" BeforeTargets="PreBuildEvent">
<Exec Command="sh -c &quot;mkdir -p obj/Protobuf &amp;&amp; protoc Protobuf/*.proto --csharp_out=obj/Protobuf --csharp_opt=file_extension=.g.cs&quot;" />
</Target>
<!-- <Target Name="PreBuild" BeforeTargets="PreBuildEvent">-->
<!-- <Exec Command="sh -c &quot;mkdir -p obj/Protobuf &amp;&amp; protoc Protobuf/*.proto &#45;&#45;csharp_out=obj/Protobuf &#45;&#45;csharp_opt=file_extension=.g.cs&quot;" />-->
<!-- </Target>-->
</Project>