You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.3 KiB
35 lines
1.3 KiB
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<RootNamespace>Parallel</RootNamespace>
|
|
<TargetFramework>net5.0</TargetFramework>
|
|
<AssemblyName>Parallel</AssemblyName>
|
|
<Description>High Performance Parallel Compute Library on Unix .NET 5 runtime</Description>
|
|
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
|
<Copyright>i@xieguigang.me</Copyright>
|
|
<PackageLicenseFile>LICENSE</PackageLicenseFile>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
<RemoveIntegerChecks>true</RemoveIntegerChecks>
|
|
<DebugSymbols>true</DebugSymbols>
|
|
<DebugType>full</DebugType>
|
|
<DefineConstants>netcore5=1,UNIX=1</DefineConstants>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="..\LICENSE">
|
|
<Pack>True</Pack>
|
|
<PackagePath></PackagePath>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\sciBASIC#\Microsoft.VisualBasic.Core\src\Core.vbproj" />
|
|
<ProjectReference Include="..\..\sciBASIC#\mime\application%json\JSON-netcore5.vbproj" />
|
|
<ProjectReference Include="..\..\sciBASIC#\www\Microsoft.VisualBasic.NETProtocol\network-netcore5.vbproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|