Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Purview.BuildSdk
# Build SDK

[![NuGet version](https://img.shields.io/nuget/v/Purview.BuildSdk.svg)](https://www.nuget.org/packages/Purview.BuildSdk)
[![Release](https://github.com/purview-dev/build-sdk/actions/workflows/release.yml/badge.svg)](https://github.com/purview-dev/build-sdk/actions/workflows/release.yml)
Expand Down
Binary file added assets/images/purview-banner-dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/purview-banner-light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
60 changes: 60 additions & 0 deletions assets/images/purview-banner.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/purview-logo-dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/purview-logo-light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed assets/images/purview-logo.png
Binary file not shown.
27 changes: 27 additions & 0 deletions assets/images/purview-logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "purview-build-sdk",
"version": "1.0.0-prerelease.56",
"version": "1.0.0-prerelease.57",
"homepage": "https://purview.dev/projects/build-sdk/",
"bugs": {
"url": "https://github.com/purview-dev/build-sdk/issues"
Expand Down
4 changes: 2 additions & 2 deletions src/src/BuildSdk/BuildSdk.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<PackageTags>msbuild;sdk;build;tunit;xunit;tunitmock;nsubstitute;bogus;csharp;dotnet</PackageTags>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageIcon>purview-logo.png</PackageIcon>
<PackageIcon>purview-logo-light.png</PackageIcon>

<!-- No compiled output — this is a pure MSBuild SDK package -->
<TargetFramework>netstandard2.0</TargetFramework>
Expand Down Expand Up @@ -105,7 +105,7 @@
<None Include="$(MSBuildThisFileDirectory)../../../README.md" Pack="true" PackagePath="/" />
<None Include="$(MSBuildThisFileDirectory)../../../LICENSE.md" Pack="true" PackagePath="/" />
<None
Include="$(MSBuildThisFileDirectory)../../../assets/images/purview-logo.png"
Include="$(MSBuildThisFileDirectory)../../../assets/images/purview-logo-light.png"
Pack="true"
PackagePath="/"
/>
Expand Down
8 changes: 4 additions & 4 deletions src/tests/BuildSdk.IntegrationTests/AgentPackFolderTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ public async Task PurviewAutoSdkPack_PacksPhysicalAndLinkedRootAssets(Cancellati
<ExcludePurviewTelemetry>true</ExcludePurviewTelemetry>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
<PackageIcon>purview-logo.png</PackageIcon>
<PackageIcon>purview-logo-light.png</PackageIcon>
""",
extraItems: """
<None Include="..\LICENSE.md" Link="Sdk\LICENSE.md" />
<None Include="..\purview-logo.png" Link="Sdk\purview-logo.png" />
<None Include="..\purview-logo-light.png" Link="Sdk\purview-logo-light.png" />
""",
cancellationToken: cancellationToken
);
Expand All @@ -40,7 +40,7 @@ await File.WriteAllTextAsync(
);
await File.WriteAllTextAsync(Path.Combine(h.SolutionDirectory, "LICENSE.md"), "License", cancellationToken);
await File.WriteAllBytesAsync(
Path.Combine(h.SolutionDirectory, "purview-logo.png"),
Path.Combine(h.SolutionDirectory, "purview-logo-light.png"),
[0xFF, 0xD8, 0xFF, 0xD9],
cancellationToken
);
Expand All @@ -61,7 +61,7 @@ await File.WriteAllBytesAsync(
var entries = package.Entries.Select(entry => entry.FullName).ToList();
await Assert.That(entries).Contains("README.md");
await Assert.That(entries).Contains("LICENSE.md");
await Assert.That(entries).Contains("purview-logo.png");
await Assert.That(entries).Contains("purview-logo-light.png");
}

[Test]
Expand Down
Loading