diff --git a/.github/workflows/nuget-publish.yml b/.github/workflows/nuget-publish.yml
index ef08e3a..58053ef 100644
--- a/.github/workflows/nuget-publish.yml
+++ b/.github/workflows/nuget-publish.yml
@@ -60,10 +60,10 @@ jobs:
csproj-paths: |
protocols\dotnet\Devolutions.NowClient\Devolutions.NowClient.csproj
protocols\dotnet\Devolutions.NowProto\Devolutions.NowProto.csproj
- - library: UniGetUIPolicy
- libpath: ./policies/dotnet/Devolutions.UniGetUI.Broker.Policy
+ - library: BrokerPolicy
+ libpath: ./policies/dotnet/Devolutions.Broker.Policy
csproj-paths: |
- policies\dotnet\Devolutions.UniGetUI.Broker.Policy\Devolutions.UniGetUI.Broker.Policy.csproj
+ policies\dotnet\Devolutions.Broker.Policy\Devolutions.Broker.Policy.csproj
steps:
- name: Check out ${{ github.repository }}
diff --git a/Cargo.lock b/Cargo.lock
index 0695ba1..4a26c09 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -80,6 +80,20 @@ version = "0.8.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
+[[package]]
+name = "devolutions-broker-policy"
+version = "0.1.0"
+dependencies = [
+ "chrono",
+ "schemars",
+ "semver",
+ "serde",
+ "serde_json",
+ "serde_yaml",
+ "thiserror",
+ "url",
+]
+
[[package]]
name = "displaydoc"
version = "0.2.6"
@@ -769,20 +783,6 @@ version = "1.0.24"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
-[[package]]
-name = "unigetui-broker-policy"
-version = "0.1.0"
-dependencies = [
- "chrono",
- "schemars",
- "semver",
- "serde",
- "serde_json",
- "serde_yaml",
- "thiserror",
- "url",
-]
-
[[package]]
name = "unsafe-libyaml"
version = "0.2.11"
diff --git a/policies/README.md b/policies/README.md
index 8832996..70fd5eb 100644
--- a/policies/README.md
+++ b/policies/README.md
@@ -1,6 +1,6 @@
Policies
========
-This directory is reserved for the UniGetUI/PEDM policy engine libraries.
+This directory is reserved for Devolutions broker policy engine libraries.
The future policy engine NuGet package and Rust crate will live here.
\ No newline at end of file
diff --git a/policies/dotnet/Devolutions.UniGetUI.Broker.Policy.Tests/Devolutions.UniGetUI.Broker.Policy.Tests.csproj b/policies/dotnet/Devolutions.Broker.Policy.Tests/Devolutions.Broker.Policy.Tests.csproj
similarity index 72%
rename from policies/dotnet/Devolutions.UniGetUI.Broker.Policy.Tests/Devolutions.UniGetUI.Broker.Policy.Tests.csproj
rename to policies/dotnet/Devolutions.Broker.Policy.Tests/Devolutions.Broker.Policy.Tests.csproj
index 9aeab80..27b4e7a 100644
--- a/policies/dotnet/Devolutions.UniGetUI.Broker.Policy.Tests/Devolutions.UniGetUI.Broker.Policy.Tests.csproj
+++ b/policies/dotnet/Devolutions.Broker.Policy.Tests/Devolutions.Broker.Policy.Tests.csproj
@@ -5,7 +5,7 @@
enable
enable
false
- Devolutions.UniGetUI.Broker.Policy.Tests
+ Devolutions.Broker.Policy.Tests
@@ -16,7 +16,7 @@
-
+
diff --git a/policies/dotnet/Devolutions.UniGetUI.Broker.Policy.Tests/PolicyTests.cs b/policies/dotnet/Devolutions.Broker.Policy.Tests/PolicyTests.cs
similarity index 95%
rename from policies/dotnet/Devolutions.UniGetUI.Broker.Policy.Tests/PolicyTests.cs
rename to policies/dotnet/Devolutions.Broker.Policy.Tests/PolicyTests.cs
index 30f2a55..542b5d5 100644
--- a/policies/dotnet/Devolutions.UniGetUI.Broker.Policy.Tests/PolicyTests.cs
+++ b/policies/dotnet/Devolutions.Broker.Policy.Tests/PolicyTests.cs
@@ -5,7 +5,7 @@
using Xunit;
-namespace Devolutions.UniGetUI.Broker.Policy.Tests;
+namespace Devolutions.Broker.Policy.Tests;
public class PolicyTests
{
@@ -13,7 +13,7 @@ public class PolicyTests
private static string SamplesDir => Path.Combine(PolicyCrateRoot, "assets", "samples");
- private static string PolicySchema => Path.Combine(PolicyCrateRoot, "schema", "unigetui.package-policy.schema.json");
+ private static string PolicySchema => Path.Combine(PolicyCrateRoot, "schema", "devolutions.broker-policy.schema.json");
public static IEnumerable