diff --git a/README.md b/README.md
index 55fc5fd..5595896 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-# Purview.BuildSdk
+# Build SDK
[](https://www.nuget.org/packages/Purview.BuildSdk)
[](https://github.com/purview-dev/build-sdk/actions/workflows/release.yml)
diff --git a/assets/images/purview-banner-dark.png b/assets/images/purview-banner-dark.png
new file mode 100644
index 0000000..e42d194
Binary files /dev/null and b/assets/images/purview-banner-dark.png differ
diff --git a/assets/images/purview-banner-light.png b/assets/images/purview-banner-light.png
new file mode 100644
index 0000000..4a8c5fe
Binary files /dev/null and b/assets/images/purview-banner-light.png differ
diff --git a/assets/images/purview-banner.svg b/assets/images/purview-banner.svg
new file mode 100644
index 0000000..ee8f284
--- /dev/null
+++ b/assets/images/purview-banner.svg
@@ -0,0 +1,60 @@
+
+
diff --git a/assets/images/purview-logo-dark.png b/assets/images/purview-logo-dark.png
new file mode 100644
index 0000000..b2bd419
Binary files /dev/null and b/assets/images/purview-logo-dark.png differ
diff --git a/assets/images/purview-logo-light.png b/assets/images/purview-logo-light.png
new file mode 100644
index 0000000..70a98cf
Binary files /dev/null and b/assets/images/purview-logo-light.png differ
diff --git a/assets/images/purview-logo.png b/assets/images/purview-logo.png
deleted file mode 100644
index 3eee1e9..0000000
Binary files a/assets/images/purview-logo.png and /dev/null differ
diff --git a/assets/images/purview-logo.svg b/assets/images/purview-logo.svg
new file mode 100644
index 0000000..7dea4ae
--- /dev/null
+++ b/assets/images/purview-logo.svg
@@ -0,0 +1,27 @@
+
diff --git a/package.json b/package.json
index ce878b2..b127326 100644
--- a/package.json
+++ b/package.json
@@ -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"
diff --git a/src/src/BuildSdk/BuildSdk.csproj b/src/src/BuildSdk/BuildSdk.csproj
index bc03a20..7c1351d 100644
--- a/src/src/BuildSdk/BuildSdk.csproj
+++ b/src/src/BuildSdk/BuildSdk.csproj
@@ -6,7 +6,7 @@
msbuild;sdk;build;tunit;xunit;tunitmock;nsubstitute;bogus;csharp;dotnet
MIT
README.md
- purview-logo.png
+ purview-logo-light.png
netstandard2.0
@@ -105,7 +105,7 @@
diff --git a/src/tests/BuildSdk.IntegrationTests/AgentPackFolderTests.cs b/src/tests/BuildSdk.IntegrationTests/AgentPackFolderTests.cs
index 20e8d63..773b529 100644
--- a/src/tests/BuildSdk.IntegrationTests/AgentPackFolderTests.cs
+++ b/src/tests/BuildSdk.IntegrationTests/AgentPackFolderTests.cs
@@ -23,11 +23,11 @@ public async Task PurviewAutoSdkPack_PacksPhysicalAndLinkedRootAssets(Cancellati
true
README.md
LICENSE.md
- purview-logo.png
+ purview-logo-light.png
""",
extraItems: """
-
+
""",
cancellationToken: cancellationToken
);
@@ -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
);
@@ -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]