Skip to content
This repository has been archived by the owner on Jan 18, 2023. It is now read-only.

Commit

Permalink
Fix Annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-fomin committed Apr 17, 2015
1 parent de2461a commit 9c3a32f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion deploy.cmd
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
SET Version=0.1.2
SET Version=0.1.3

nuget\nuget.exe pack src\Tp.Core.Functional\Tp.Core.Functional.csproj -Build -Symbols -Properties Configuration=Release -Version %VERSION%
nuget\nuget.exe push Tp.Core.Functional.%VERSION%.nupkg
8 changes: 4 additions & 4 deletions src/Tp.Core.Functional/Annotations.cs
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ public AssertionConditionAttribute(AssertionConditionType conditionType)
/// Specifies assertion type. If the assertion method argument satisifes the condition, then the execution continues.
/// Otherwise, execution is assumed to be halted
/// </summary>
public enum AssertionConditionType
internal enum AssertionConditionType
{
/// <summary>
/// Indicates that the marked parameter should be evaluated to true
Expand Down Expand Up @@ -288,7 +288,7 @@ public MeansImplicitUseAttribute(ImplicitUseTargetFlags targetFlags)
}

[Flags]
public enum ImplicitUseKindFlags
internal enum ImplicitUseKindFlags
{
Default = Access | Assign | InstantiatedWithFixedConstructorSignature,

Expand Down Expand Up @@ -318,7 +318,7 @@ public enum ImplicitUseKindFlags
/// Specify what is considered used implicitly when marked with <see cref="MeansImplicitUseAttribute"/> or <see cref="UsedImplicitlyAttribute"/>
/// </summary>
[Flags]
public enum ImplicitUseTargetFlags
internal enum ImplicitUseTargetFlags
{
Default = Itself,

Expand Down Expand Up @@ -364,7 +364,7 @@ internal sealed class InstantHandleAttribute : Attribute { }
internal sealed class PureAttribute : Attribute { }

[AttributeUsage(AttributeTargets.Parameter)]
public class PathReferenceAttribute : Attribute
internal class PathReferenceAttribute : Attribute
{
public PathReferenceAttribute() { }

Expand Down
4 changes: 2 additions & 2 deletions src/Tp.Core.Functional/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@
[assembly: AssemblyCulture("")]
[assembly: ComVisible(false)]
[assembly: Guid("5b586874-8d3e-4137-9ba8-e982413416d5")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyVersion("0.1.3.0")]
[assembly: AssemblyFileVersion("0.1.3.0")]

0 comments on commit 9c3a32f

Please sign in to comment.