c-kzg-4844/bindings/csharp/Ckzg.Bindings/Ckzg.Bindings.csproj

36 lines
2.2 KiB
XML
Raw Normal View History

2022-11-03 16:08:17 +03:00
<Project Sdk="Microsoft.NET.Sdk">
2023-03-07 00:46:00 +03:00
<PropertyGroup>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
2023-03-16 19:33:46 +00:00
<ImplicitUsings>enable</ImplicitUsings>
<LangVersion>preview</LangVersion>
<Nullable>enable</Nullable>
<OutputType>Library</OutputType>
2023-03-07 00:46:00 +03:00
<PackageLicenseFile>LICENSE</PackageLicenseFile>
2023-03-16 19:33:46 +00:00
<PackageProjectUrl>https://github.com/ethereum/c-kzg-4844/tree/main/bindings/csharp</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageTags>c-kzg eip-4844</PackageTags>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/ethereum/c-kzg-4844</RepositoryUrl>
<RootNamespace>Ckzg</RootNamespace>
<TargetFramework>net6.0</TargetFramework>
<Title>Ckzg.Bindings</Title>
2023-03-07 00:46:00 +03:00
<Version>0.1.0.0</Version>
</PropertyGroup>
2022-11-03 16:08:17 +03:00
2023-03-07 00:46:00 +03:00
<ItemGroup>
2023-03-16 19:33:46 +00:00
<None Include="..\README.md" Pack="true" PackagePath="\"/>
<None Include="..\..\..\LICENSE" Pack="true" PackagePath="\"/>
2023-03-07 00:46:00 +03:00
</ItemGroup>
2022-11-03 16:08:17 +03:00
2023-03-07 00:46:00 +03:00
<ItemGroup>
<Content CopyToOutputDirectory="PreserveNewest" Condition="Exists('runtimes/win-x64/native/ckzg.dll')" Include="runtimes/win-x64/native/ckzg.dll" Pack="true" PackagePath="runtimes/win-x64/native/ckzg.dll"/>
<Content CopyToOutputDirectory="PreserveNewest" Condition="Exists('runtimes/linux-x64/native/ckzg.so')" Include="runtimes/linux-x64/native/ckzg.so" Pack="true" PackagePath="runtimes/linux-x64/native/ckzg.so"/>
<Content CopyToOutputDirectory="PreserveNewest" Condition="Exists('runtimes/linux-arm64/native/ckzg.so')" Include="runtimes/linux-arm64/native/ckzg.so" Pack="true" PackagePath="runtimes/linux-arm64/native/ckzg.so"/>
<Content CopyToOutputDirectory="PreserveNewest" Condition="Exists('runtimes/osx-x64/native/ckzg.so')" Include="runtimes/osx-x64/native/ckzg.so" Pack="true" PackagePath="runtimes/osx-x64/native/ckzg.so"/>
<Content CopyToOutputDirectory="PreserveNewest" Condition="Exists('runtimes/osx-arm64/native/ckzg.so')" Include="runtimes/osx-arm64/native/ckzg.so" Pack="true" PackagePath="runtimes/osx-arm64/native/ckzg.so"/>
</ItemGroup>
2022-11-03 16:08:17 +03:00
</Project>