2018-08-02 20:14:48 +08:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>netstandard1.6</TargetFramework>
|
|
|
|
|
<Description>sciBASIC.NET Framework: Core runtime for Microsoft VisualBasic 2017</Description>
|
|
|
|
|
<Copyright>Copyleft (ɔ) xie.guigang@live.com</Copyright>
|
2018-08-02 20:28:57 +08:00
|
|
|
<RootNamespace>Microsoft.VisualBasic</RootNamespace>
|
2018-08-02 20:14:48 +08:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2018-08-02 20:28:57 +08:00
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
|
|
|
<RemoveIntegerChecks>false</RemoveIntegerChecks>
|
|
|
|
|
<DebugSymbols>true</DebugSymbols>
|
|
|
|
|
<DebugType>full</DebugType>
|
|
|
|
|
<DefineConstants>NETSTANDARD1_6=True</DefineConstants>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="System.Data.Common" Version="4.3.0" />
|
|
|
|
|
<PackageReference Include="System.Drawing.Primitives" Version="4.3.0" />
|
|
|
|
|
<PackageReference Include="System.Dynamic.Runtime" Version="4.3.0" />
|
|
|
|
|
<PackageReference Include="System.Threading.Thread" Version="4.3.0" />
|
|
|
|
|
<PackageReference Include="System.ValueTuple" Version="4.5.0" />
|
|
|
|
|
<PackageReference Include="System.Xml.XmlSerializer" Version="4.3.0" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2018-08-02 20:14:48 +08:00
|
|
|
</Project>
|