forked from neo-project/neo
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Erik Zhang
committed
May 25, 2017
1 parent
5422049
commit 80affc4
Showing
5 changed files
with
63 additions
and
92 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<Copyright>2015-2017 The Antshares team</Copyright> | ||
<AssemblyTitle>AntShares</AssemblyTitle> | ||
<VersionPrefix>1.6.1</VersionPrefix> | ||
<Authors>The Antshares team</Authors> | ||
<TargetFrameworks>netstandard1.6;net461</TargetFrameworks> | ||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> | ||
<AssemblyName>AntShares</AssemblyName> | ||
<PackageId>AntShares</PackageId> | ||
<PackageTags>AntShares;Blockchain;Smart Contract</PackageTags> | ||
<PackageProjectUrl>https://github.com/AntShares/AntShares</PackageProjectUrl> | ||
<RepositoryType>git</RepositoryType> | ||
<RepositoryUrl>https://github.com/AntShares/AntShares.git</RepositoryUrl> | ||
<NetStandardImplicitPackageVersion Condition=" '$(TargetFramework)' == 'netstandard1.6' ">1.6.1</NetStandardImplicitPackageVersion> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netstandard1.6|AnyCPU'"> | ||
<DefineConstants>RELEASE;NETSTANDARD1_6</DefineConstants> | ||
<DebugType>none</DebugType> | ||
<DebugSymbols>False</DebugSymbols> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<None Update="protocol.json"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
<PackagePath>content</PackagePath> | ||
<Pack>true</Pack> | ||
</None> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="AntShares.VM" Version="1.6.5" /> | ||
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel" Version="1.1.1" /> | ||
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel.Https" Version="1.1.1" /> | ||
<PackageReference Include="Microsoft.AspNetCore.WebSockets" Version="1.0.1" /> | ||
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="1.0.3" /> | ||
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="1.0.2" /> | ||
<PackageReference Include="System.Net.Sockets" Version="4.3.0" /> | ||
<PackageReference Include="System.Security.SecureString" Version="4.0.0" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard1.6' "> | ||
<PackageReference Include="System.Linq.Parallel" Version="4.0.1" /> | ||
<PackageReference Include="System.Net.NameResolution" Version="4.0.0" /> | ||
<PackageReference Include="System.Net.NetworkInformation" Version="4.1.0" /> | ||
<PackageReference Include="System.Net.Requests" Version="4.0.11" /> | ||
<PackageReference Include="System.Xml.XPath.XmlDocument" Version="4.0.1" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup Condition=" '$(TargetFramework)' == 'net461' "> | ||
<Reference Include="System.Numerics" /> | ||
<Reference Include="System.Security" /> | ||
<Reference Include="System.Xml" /> | ||
<Reference Include="System" /> | ||
<Reference Include="Microsoft.CSharp" /> | ||
</ItemGroup> | ||
|
||
</Project> |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.