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:
Родитель
6596a4b095
Коммит
26951c3cb0
|
@ -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;
|
||||
|
|
Загрузка…
Ссылка в новой задаче