config for docker project

master
guigang xie 5 years ago
parent 890e86eff6
commit 2c4ae760aa

@ -0,0 +1,125 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<RootNamespace>Darwinism.Docker</RootNamespace>
<TargetFramework>net5.0</TargetFramework>
<AssemblyName>Docker</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>
<Configurations>Debug;Release;Rsharp_app_release;LipidSearch;PlantMAT;NPSearch</Configurations>
<Platforms>AnyCPU;x64</Platforms>
<PackageProjectUrl>https://github.com/xieguigang/Darwinism</PackageProjectUrl>
<RepositoryUrl>https://github.com/xieguigang/Darwinism</RepositoryUrl>
<RepositoryType>git</RepositoryType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<RemoveIntegerChecks>true</RemoveIntegerChecks>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<DefineConstants>netcore5=1,UNIX=1</DefineConstants>
<DocumentationFile>Docker.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<RemoveIntegerChecks>true</RemoveIntegerChecks>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<DefineConstants>netcore5=1,UNIX=1</DefineConstants>
<DocumentationFile>Docker.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Rsharp_app_release|x64'">
<RemoveIntegerChecks>true</RemoveIntegerChecks>
<Optimize>false</Optimize>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<DefineDebug>false</DefineDebug>
<DefineTrace>true</DefineTrace>
<DefineConstants>netcore5=1,UNIX=1</DefineConstants>
<DocumentationFile>Docker.xml</DocumentationFile>
<OutputPath>D:\GCModeller\src\R-sharp\App\</OutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PlantMAT|x64'">
<RemoveIntegerChecks>true</RemoveIntegerChecks>
<Optimize>false</Optimize>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<DefineDebug>false</DefineDebug>
<DefineTrace>true</DefineTrace>
<DefineConstants>netcore5=1,UNIX=1</DefineConstants>
<DocumentationFile>Docker.xml</DocumentationFile>
<OutputPath>D:\PlantMAT\PlantMAT\assembly\</OutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='NPSearch|x64'">
<RemoveIntegerChecks>true</RemoveIntegerChecks>
<Optimize>false</Optimize>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<DefineDebug>false</DefineDebug>
<DefineTrace>true</DefineTrace>
<DefineConstants>netcore5=1,UNIX=1</DefineConstants>
<DocumentationFile>Docker.xml</DocumentationFile>
<OutputPath>D:\biodeep\biodeepdb_v3\metaCluster\NPSearch\assembly\</OutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LipidSearch|x64'">
<RemoveIntegerChecks>true</RemoveIntegerChecks>
<Optimize>false</Optimize>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<DefineDebug>false</DefineDebug>
<DefineTrace>true</DefineTrace>
<DefineConstants>netcore5=1,UNIX=1</DefineConstants>
<DocumentationFile>Docker.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DocumentationFile>Docker.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Rsharp_app_release|AnyCPU'">
<DocumentationFile>Docker.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='PlantMAT|AnyCPU'">
<DocumentationFile>Docker.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='NPSearch|AnyCPU'">
<DocumentationFile>Docker.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='LipidSearch|AnyCPU'">
<DocumentationFile>Docker.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<DocumentationFile>Docker.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<Compile Remove="test\**" />
<EmbeddedResource Remove="test\**" />
<None Remove="test\**" />
<None Include="..\..\LICENSE">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.Management.Automation" Version="6.2.7" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\..\R-sharp\R#\Rsharp-netcore5.vbproj" />
<ProjectReference Include="..\..\..\sciBASIC#\Microsoft.VisualBasic.Core\src\Core.vbproj" />
</ItemGroup>
</Project>

@ -7,7 +7,7 @@ Imports System.Runtime.InteropServices
' associated with an assembly.
' Review the values of the assembly attributes
#if netcore5=0 then
<Assembly: AssemblyTitle("Docker to VB.NET interface")>
<Assembly: AssemblyDescription("Docker to VB.NET interface")>
<Assembly: AssemblyCompany("http://sciBASIC.NET")>
@ -33,3 +33,4 @@ Imports System.Runtime.InteropServices
<Assembly: AssemblyVersion("1.0.0.0")>
<Assembly: AssemblyFileVersion("1.0.0.0")>
#end if

@ -10,7 +10,7 @@
Option Strict On
Option Explicit On
#if netcore5=0 then
Namespace My
@ -71,3 +71,4 @@ Namespace My
End Property
End Module
End Namespace
#end if
Loading…
Cancel
Save