-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCatalyst.Crypto.rs.Natives.csproj
39 lines (38 loc) · 1.89 KB
/
Catalyst.Crypto.rs.Natives.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<NoBuild>true</NoBuild>
<IncludeBuildOutput>false</IncludeBuildOutput>
<PackageOutputPath>$(MSBuildProjectDirectory)</PackageOutputPath>
<ProjectFileToPack>$(MSBuildProjectFullPath)</ProjectFileToPack>
<IsPackable>true</IsPackable>
</PropertyGroup>
<PropertyGroup>
<PackageId>Catalyst.Crypto.rs.Natives</PackageId>
<Authors>catalystnet.org/</Authors>
<Description>Internal implementation package not meant for direct consumption. Please do not reference directly.</Description>
<Copyright>Copyright © 2024 Catalyst Network</Copyright>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageLicenseUrl>https://github.com/catalyst-network/Catalyst-rs/packages/catalyst-ffi/LICENSE</PackageLicenseUrl>
<RepositoryUrl>https://github.com/catalyst-network/Catalyst-rs</RepositoryUrl>
<PackageProjectUrl>https://github.com/catalyst-network/Catalyst-rs/packages/catalyst-ffi</PackageProjectUrl>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<OutputPath>bin\Debug\</OutputPath>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<OutputPath>bin\Release\</OutputPath>
</PropertyGroup>
<PropertyGroup>
<VersionSuffix>$(VersionSuffix)</VersionSuffix>
<VersionPrefix>0.0.2</VersionPrefix>
<Version Condition=" '$(VersionSuffix)' != '' ">$(VersionPrefix).$(VersionSuffix)</Version>
<Version Condition=" '$(VersionSuffix)' == '' ">$(VersionPrefix)</Version>
</PropertyGroup>
<ItemGroup>
<None Include="LICENSE" PackagePath="" Pack="true" />
<None Include="runtimes\**\*.*" PackagePath="runtimes\" Pack="true" />
</ItemGroup>
</Project>