-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env
More file actions
23 lines (20 loc) · 1.15 KB
/
.env
File metadata and controls
23 lines (20 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# ============================================================
# REQUIRED: Azure DevOps Credentials
# ============================================================
# Azure DevOps Personal Access Token - for authentication to DevOps Artifacts Feed
# IMPORTANT: Keep this secure in production; never commit actual tokens to repository
# Required scope: Package Read (minimum) for accessing NuGet feed
# AZDO_PAT=<your_personal_access_token_here>
AZDO_PAT=<your_personal_access_token_here>
# ============================================================
# CONFIGURABLE: NuGet Package Version
# ============================================================
# NuGet package version - supports floating (2.0.*, 2.*.*, *.*.*) or exact (2.0.2-rc0) versions
# Floating version patterns:
# - 2.0.* : Latest patch release of 2.0 (e.g., 2.0.10)
# - 2.*.* : Latest release of major version 2 (e.g., 2.1.5)
# - *.*.* : Latest version available (e.g., 3.1.0)
# Exact version (2.0.2-rc0) pins to specific version
# The package is fetched at container runtime, not build time
# NOTE: Change this without rebuilding Docker image - version is passed at runtime
NUGET_PKG_TO_BE_TESTED=2.*.*