Convert to use .net standard 1.0 (#6)

* enable nuget pack

enable nuget pack

* set file version

* set file version for test project

* changed target framework to .net stardard 2.0

* enable delay code sign

* change default sign to false

* conver to use .net stardard 1.0
This commit is contained in:
tomzg 2018-07-30 14:33:32 -07:00 коммит произвёл GitHub
Родитель 6596a4b095
Коммит 26951c3cb0
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
3 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -11,7 +11,7 @@ namespace Microsoft.CorrelationVector
/// This class represents a lightweight vector for identifying and measuring
/// causality.
/// </summary>
public sealed partial class CorrelationVector : MarshalByRefObject
public sealed partial class CorrelationVector
{
private const byte MaxVectorLength = 63;
private const byte MaxVectorLengthV2 = 127;

Просмотреть файл

@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFramework>netstandard1.0</TargetFramework>
<Company>Microsoft</Company>
<Authors>Microsoft</Authors>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>

Просмотреть файл

@ -74,7 +74,7 @@ namespace Microsoft.CorrelationVector
/// <summary>
/// This class stores parameters used by the CorrelationVector Spin operator.
/// </summary>
public class SpinParameters : MarshalByRefObject
public class SpinParameters
{
// Internal value for entropy bytes.
private int entropyBytes;