Initial commit

This commit is contained in:
rudder
2026-08-12 14:03:44 +03:00
commit 9a7b4a57dc
304 changed files with 82311 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
PACKAGE_DIR := Packages/rudder.sdk
CORE_REPO := ../liveops-csharp-sdk
CORE_DLL := $(CORE_REPO)/bin/Release/netstandard2.1/Rudder.Core.dll
REGISTRY := https://hub.rudder.build/api/packages/rudder/npm/
.PHONY: sync-core pack publish
sync-core:
dotnet build $(CORE_REPO)/Rudder.Core.csproj -c Release
cp $(CORE_DLL) $(PACKAGE_DIR)/Runtime/Plugins/Rudder.Core.dll
pack:
cd $(PACKAGE_DIR) && npm pack
publish:
cd $(PACKAGE_DIR) && npm publish --registry $(REGISTRY)