Skip to content

Commit

Permalink
Bumped version v1.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
FaustVX committed May 18, 2024
1 parent a8ef852 commit 21bdf48
Show file tree
Hide file tree
Showing 8 changed files with 25 additions and 8 deletions.
2 changes: 1 addition & 1 deletion ConsoleApp1/ConsoleApp1.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="FaustVX.PrimaryParameter.SG" Version="1.3.3" />
<PackageReference Include="FaustVX.PrimaryParameter.SG" Version="1.3.4" />
<!-- <ProjectReference Include="..\PrimaryParameter.SG\PrimaryParameter.SG.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" PrivateAssets="All" /> -->
</ItemGroup>

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
// <auto-generated/>
#pragma warning disable
// <auto-generated/>
using global::System;
namespace PrimaryParameter.SG
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
// <auto-generated/>
#pragma warning disable
// <auto-generated/>
namespace ConsoleApp1
{
partial class C
Expand All @@ -8,15 +9,20 @@ partial class C
private readonly int _i = i;
}
}
#pragma warning disable
// <auto-generated/>
namespace ConsoleApp1
{
partial class C
{
/// <summary>
/// Documentation
/// </summary>
public string S { get; init; } = s.Trim();
private readonly string s = s;
}
}
#pragma warning disable
// <auto-generated/>
namespace ConsoleApp1
{
Expand All @@ -28,6 +34,7 @@ partial class C<T>
}
}
}
#pragma warning disable
// <auto-generated/>
namespace ConsoleApp1
{
Expand All @@ -36,6 +43,7 @@ partial struct Ref
private readonly ref int Abc = ref i;
}
}
#pragma warning disable
// <auto-generated/>
namespace ConsoleApp1
{
Expand All @@ -44,6 +52,7 @@ partial struct Ref
private readonly int _a = a;
}
}
#pragma warning disable
// <auto-generated/>
namespace ConsoleApp1
{
Expand All @@ -52,6 +61,7 @@ partial class ParamNameOf
private readonly int Day = dateTime.Day;
}
}
#pragma warning disable
// <auto-generated/>
partial struct C
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
// <auto-generated/>
#pragma warning disable
// <auto-generated/>
using global::System;
namespace PrimaryParameter.SG
{
Expand All @@ -10,5 +11,6 @@ sealed class FieldAttribute : Attribute
public Type Type { get; init; }
public bool IsReadonly { get; init; }
public string Scope { get; init; }
public string Summary { get; init; }
}
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
// <auto-generated/>
#pragma warning disable
// <auto-generated/>
using global::System;
namespace PrimaryParameter.SG
{
Expand All @@ -10,5 +11,6 @@ sealed class PropertyAttribute : Attribute
public Type Type { get; init; }
public string Setter { get; init; }
public string Scope { get; init; }
public string Summary { get; init; }
}
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
// <auto-generated/>
#pragma warning disable
// <auto-generated/>
using global::System;
namespace PrimaryParameter.SG
{
Expand All @@ -9,5 +10,6 @@ sealed class RefFieldAttribute : Attribute
public string Scope { get; init; }
public bool IsReadonlyRef { get; init; }
public bool IsRefReadonly { get; init; }
public string Summary { get; init; }
}
}
2 changes: 1 addition & 1 deletion ConsoleApp1/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ partial class C
}
#endif

public partial class C([Field(Name = "_" + "a", AssignFormat = "{0}.ToString()", Type = typeof(string), IsReadonly = false), Field(Name = nameof(C.B), Scope = "public", IsReadonly = false), Field, Field] int i, [Property(Setter = "init", AssignFormat = "{0}.Trim()"), Field(Name = nameof(C.s))] string s)
public partial class C([Field(Name = "_" + "a", AssignFormat = "{0}.ToString()", Type = typeof(string), IsReadonly = false), Field(Name = nameof(C.B), Scope = "public", IsReadonly = false), Field, Field] int i, [Property(Setter = "init", AssignFormat = "{0}.Trim()", Summary = "Documentation"), Field(Name = nameof(C.s))] string s)
{
public void M0()
{
Expand Down
2 changes: 1 addition & 1 deletion PrimaryParameter.SG/PrimaryParameter.SG.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

<PropertyGroup>
<PackageId>FaustVX.PrimaryParameter.SG</PackageId>
<Version>1.3.3</Version>
<Version>1.3.4</Version>
<Authors>FaustVX</Authors>
<RepositoryUrl>https://github.com/FaustVX/PrimaryParameter</RepositoryUrl>
<RepositoryType>git</RepositoryType>
Expand Down

0 comments on commit 21bdf48

Please sign in to comment.