Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
<Authors>Declan Smith</Authors>

<PackageIcon>icon.png</PackageIcon>
<PackageReadmeFile>readme.md</PackageReadmeFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<PackageDescription>An opinionated task and build automation framework</PackageDescription>
<EnablePackageValidation>true</EnablePackageValidation>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
Expand All @@ -24,7 +25,8 @@
</PropertyGroup>

<ItemGroup>
<None Include="../../images/icon.png" Pack="true" PackagePath="\" />
<None Include="../../readme.md" Pack="true" PackagePath="\" />
<None Include="$(MSBuildThisFileDirectory)images/icon.png" Pack="true" PackagePath="\" />
<None Include="$(MSBuildThisFileDirectory)README.md" Pack="true" PackagePath="\" />
<None Include="$(MSBuildThisFileDirectory)LICENSE.txt" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2024 Declan Smith
Copyright (c) 2024-2026 Declan Smith

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
5 changes: 0 additions & 5 deletions _atom/_atom.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,6 @@
<PublishSingleFile>true</PublishSingleFile>
</PropertyGroup>

<ItemGroup>
<None Include="../images/icon.png" Pack="true" PackagePath="\" />
<None Include="../readme.md" Pack="true" PackagePath="\" />
</ItemGroup>

<ItemGroup>
<CompilerVisibleProperty Include="MSBuildProjectDirectory" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<PackageReference Include="NUnit3TestAdapter" Version="6.2.0" />
<PackageReference Include="Shouldly" Version="4.3.0" />
<PackageReference Include="System.Formats.Asn1" Version="10.0.9" />
<PackageReference Include="Verify.NUnit" Version="31.20.0" />
<PackageReference Include="Verify.NUnit" Version="31.22.0" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion tests/Invex.Atom.Build.Tests/Invex.Atom.Build.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<PackageReference Include="Shouldly" Version="4.3.0" />
<PackageReference Include="Spectre.Console.Testing" Version="0.57.2" />
<PackageReference Include="TestableIO.System.IO.Abstractions.TestingHelpers" Version="22.1.1" />
<PackageReference Include="Verify.NUnit" Version="31.20.0" />
<PackageReference Include="Verify.NUnit" Version="31.22.0" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<PackageReference Include="Shouldly" Version="4.3.0" />
<PackageReference Include="Spectre.Console.Testing" Version="0.57.2" />
<PackageReference Include="TestableIO.System.IO.Abstractions.TestingHelpers" Version="22.1.1" />
<PackageReference Include="Verify.NUnit" Version="31.20.0" />
<PackageReference Include="Verify.NUnit" Version="31.22.0" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<PackageReference Include="Shouldly" Version="4.3.0" />
<PackageReference Include="Spectre.Console.Testing" Version="0.57.2" />
<PackageReference Include="TestableIO.System.IO.Abstractions.TestingHelpers" Version="22.1.1" />
<PackageReference Include="Verify.NUnit" Version="31.20.0" />
<PackageReference Include="Verify.NUnit" Version="31.22.0" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion tests/Invex.Atom.Tool.Tests/Invex.Atom.Tool.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<PackageReference Include="NUnit3TestAdapter" Version="6.2.0" />
<PackageReference Include="Shouldly" Version="4.3.0" />
<PackageReference Include="TestableIO.System.IO.Abstractions.TestingHelpers" Version="22.1.1" />
<PackageReference Include="Verify.NUnit" Version="31.20.0" />
<PackageReference Include="Verify.NUnit" Version="31.22.0" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<PackageReference Include="Shouldly" Version="4.3.0" />
<PackageReference Include="Spectre.Console.Testing" Version="0.57.2" />
<PackageReference Include="TestableIO.System.IO.Abstractions.TestingHelpers" Version="22.1.1" />
<PackageReference Include="Verify.NUnit" Version="31.20.0" />
<PackageReference Include="Verify.NUnit" Version="31.22.0" />
</ItemGroup>

<ItemGroup>
Expand Down
Loading