Skip to content

Commit

Permalink
This is version 0.3.0.
Browse files Browse the repository at this point in the history
Reword some comments.
  • Loading branch information
teo-tsirpanis committed Nov 2, 2020
1 parent 61f7d77 commit 34983de
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 10 deletions.
4 changes: 2 additions & 2 deletions Sigourney/AssemblyReference.cs
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,11 @@ public AssemblyReference(string fileName)
public bool IsReferenceAssembly { get; }

/// <summary>
/// A <see cref="AssemblyNameDefinition"/> object that corresponds to this assembly.
/// An <see cref="AssemblyNameDefinition"/> object that corresponds to this assembly.
/// </summary>
public AssemblyNameDefinition AssemblyName { get; }

#region Equality comparer boilerplate
#region Interface implementation boilerplate

/// <inheritdoc/>
public bool Equals(AssemblyReference? other)
Expand Down
2 changes: 1 addition & 1 deletion Sigourney/MSBuildWeaver.cs
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public MSBuildWeaver()
public ITaskItem[]? Configuration { get; set; }

/// <summary>
/// The assembly's references, as given by MSBuild.
/// The assembly's references.
/// </summary>
public IReadOnlyList<AssemblyReference> AssemblyReferences =>
_configThunk.Value?.References ?? _emptyReferenceList;
Expand Down
11 changes: 8 additions & 3 deletions Sigourney/Sigourney.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,17 @@
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<PackageId>Sigourney</PackageId>
<Version>0.2.1</Version>
<Version>0.3.0</Version>
<Description>A lightweight toolkit that helps easily writing .NET assembly weavers.</Description>
<Authors>Theodore Tsirpanis</Authors>
<Copyright>Copyright © Theodore Tsirpanis. Licensed under the MIT License. Contains some code from Fody, which is licensed under the MIT License as well.</Copyright>
<PackageReleaseNotes>Reword some log messages.
Remove the sentinel files when the project gets cleaned.</PackageReleaseNotes>
<PackageReleaseNotes>Expose the assembly references to MSBuild weaver tasks.

Deprecate the sentinel API in favor of a simpler incremental build system that always works.

Update dependencies, shrinking Sigourney package's size.

Fix some Unix-specific bugs.</PackageReleaseNotes>
<PackageProjectUrl>https://github.com/teo-tsirpanis/Sigourney</PackageProjectUrl>
<PackageTags>ILWeaving;Sigourney;Cecil</PackageTags>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
Expand Down
6 changes: 3 additions & 3 deletions Sigourney/WeaverConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
namespace Sigourney
{
/// <summary>
/// A class containing configuration data for a <see cref="Weaver"/>.
/// A class containing optional configuration that is passed to <see cref="Weaver.Weave"/>.
/// </summary>
/// <remarks>The necessary ones are typically provided by MSBuild,
/// but custom applications can give their own.</remarks>
/// <remarks>It is automaticallly created by MSBuild but standalone
/// applications using Sigourney can use their own.</remarks>
public class WeaverConfig
{
/// <summary>
Expand Down
2 changes: 1 addition & 1 deletion test.ps1
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#! /usr/bin/env pwsh
# This little script runs Sigourney's test project thrice to ensure it works repeatedly.
# This little script runs Sigourney's test project many times to ensure it works repeatedly.
# It also keeps binary logs of each test run (which are kept as artifacts by AppVeyor).

function DotnetClean {dotnet clean /v:m /nodereuse:false $TestProject}
Expand Down

0 comments on commit 34983de

Please sign in to comment.