update demo and bumped versions
This commit is contained in:
@@ -4,62 +4,181 @@ on:
|
|||||||
release:
|
release:
|
||||||
types: [published]
|
types: [published]
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
inputs:
|
||||||
|
package_version:
|
||||||
|
description: Optional SemVer package version. Defaults to a timestamped dev prerelease.
|
||||||
|
type: string
|
||||||
|
required: false
|
||||||
|
push_to_baget:
|
||||||
|
description: Push to internal BaGet (nuget.sabp.ir)
|
||||||
|
type: boolean
|
||||||
|
default: true
|
||||||
|
push_to_nuget_org:
|
||||||
|
description: Also push to nuget.org (manual opt-in only)
|
||||||
|
type: boolean
|
||||||
|
default: false
|
||||||
|
|
||||||
env:
|
env:
|
||||||
DOTNET_NOLOGO: true
|
DOTNET_NOLOGO: true
|
||||||
DOTNET_CLI_TELEMETRY_OPTOUT: true
|
DOTNET_CLI_TELEMETRY_OPTOUT: true
|
||||||
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
|
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
|
||||||
NUGET_SOURCE_URL: https://nuget.sabp.ir/v3/index.json
|
HARBOR_REGISTRY: reg.sabp.ir
|
||||||
|
SDK_IMAGE: reg.sabp.ir/sufi-chain/dotnet-sdk-build:10.0.202
|
||||||
|
GIT_HOST: git.sabp.ir
|
||||||
|
REPOSITORY: ${{ gitea.repository }}
|
||||||
|
REF_NAME: ${{ gitea.ref_name }}
|
||||||
|
RELEASE_TAG: ${{ gitea.event.release.tag_name }}
|
||||||
|
INPUT_PACKAGE_VERSION: ${{ inputs.package_version }}
|
||||||
|
INPUT_PUSH_TO_BAGET: ${{ inputs.push_to_baget }}
|
||||||
|
INPUT_PUSH_TO_NUGET_ORG: ${{ inputs.push_to_nuget_org }}
|
||||||
|
BAGET_SOURCE_URL: https://nuget.sabp.ir/v3/index.json
|
||||||
|
NUGET_ORG_SOURCE_URL: https://api.nuget.org/v3/index.json
|
||||||
NUGET_PUSH_PARALLELISM: 4
|
NUGET_PUSH_PARALLELISM: 4
|
||||||
PACKAGE_OUTPUT: ./artifacts/nuget
|
PACKAGE_OUTPUT: ./artifacts/nuget
|
||||||
PACKAGE_PROJECTS: src/SufiChain.SufiBlazor/SufiChain.SufiBlazor.csproj
|
PACKAGE_PROJECTS: src/SufiChain.SufiBlazor/SufiChain.SufiBlazor.csproj
|
||||||
# TODO: Add demo packages here when they are ready for release.
|
ROOT_SLNX: SufiChain.SufiBlazor.slnx
|
||||||
RELEASE_TAG: ${{ gitea.event.release.tag_name }}
|
WORKSPACE_DIR: ${{ github.workspace }}
|
||||||
REF_NAME: ${{ gitea.ref_name }}
|
|
||||||
REPOSITORY: ${{ gitea.repository }}
|
concurrency:
|
||||||
|
group: release-nuget-${{ gitea.ref_name }}
|
||||||
|
cancel-in-progress: false
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
pack-and-push:
|
pack-and-push:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
container:
|
|
||||||
image: mcr-mirror.liara.ir/dotnet/sdk:10.0.202
|
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Check runner prerequisites
|
||||||
shell: bash
|
shell: sh
|
||||||
run: |
|
run: |
|
||||||
set -euo pipefail
|
set -eu
|
||||||
git clone --depth 1 https://git.sabp.ir/sufi-chain/sufi-blazor.git .
|
if ! command -v docker >/dev/null 2>&1; then
|
||||||
|
echo "docker CLI is required on the runner." >&2
|
||||||
|
echo "Map ubuntu-latest to docker:27-cli and mount /var/run/docker.sock into act_runner." >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
if ! docker version >/dev/null 2>&1; then
|
||||||
|
echo "docker CLI exists, but cannot reach Docker daemon." >&2
|
||||||
|
echo "Check Docker service and /var/run/docker.sock mount/permissions for the Gitea runner." >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
- name: Set package version
|
- name: Login to Harbor
|
||||||
shell: bash
|
shell: sh
|
||||||
|
env:
|
||||||
|
HARBOR_USERNAME: ${{ secrets.HARBOR_USERNAME }}
|
||||||
|
HARBOR_PASSWORD: ${{ secrets.HARBOR_PASSWORD }}
|
||||||
run: |
|
run: |
|
||||||
set -euo pipefail
|
set -eu
|
||||||
|
if [ -z "${HARBOR_USERNAME:-}" ] || [ -z "${HARBOR_PASSWORD:-}" ]; then
|
||||||
|
echo "HARBOR_USERNAME and HARBOR_PASSWORD secrets are required." >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
echo "$HARBOR_PASSWORD" | docker login "$HARBOR_REGISTRY" \
|
||||||
|
-u "$HARBOR_USERNAME" \
|
||||||
|
--password-stdin
|
||||||
|
|
||||||
|
- name: Checkout
|
||||||
|
shell: sh
|
||||||
|
env:
|
||||||
|
GITEATOKEN: ${{ secrets.GITEATOKEN }}
|
||||||
|
run: |
|
||||||
|
set -eu
|
||||||
|
workspace="${WORKSPACE_DIR:-${GITHUB_WORKSPACE:-$PWD}}"
|
||||||
|
cd "$workspace"
|
||||||
|
echo "Using workspace: $workspace"
|
||||||
|
|
||||||
|
if [ -f "$ROOT_SLNX" ]; then
|
||||||
|
echo "Repository already checked out by the runner ($ROOT_SLNX)."
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "Runner workspace is empty; cloning with SDK container."
|
||||||
|
CLONE_URL="https://${GIT_HOST}/${REPOSITORY}.git"
|
||||||
|
if [ -n "${GITEATOKEN:-}" ]; then
|
||||||
|
CLONE_URL="$(printf '%s' "$CLONE_URL" | sed "s#^https://#https://x-access-token:${GITEATOKEN}@#")"
|
||||||
|
fi
|
||||||
|
export CLONE_URL
|
||||||
|
container_id="$(docker run -d \
|
||||||
|
-w /src \
|
||||||
|
-e REF_NAME \
|
||||||
|
-e CLONE_URL \
|
||||||
|
"$SDK_IMAGE" \
|
||||||
|
sleep 3600)"
|
||||||
|
trap 'docker rm -f "$container_id" >/dev/null 2>&1 || true' EXIT INT TERM
|
||||||
|
docker exec "$container_id" sh -c '
|
||||||
|
set -eu
|
||||||
|
if [ -n "${REF_NAME:-}" ]; then
|
||||||
|
git clone --depth 1 --branch "$REF_NAME" "$CLONE_URL" /src
|
||||||
|
else
|
||||||
|
git clone --depth 1 "$CLONE_URL" /src
|
||||||
|
fi
|
||||||
|
test -f "'"$ROOT_SLNX"'"
|
||||||
|
'
|
||||||
|
docker cp "${container_id}:/src/." "${workspace}/"
|
||||||
|
docker rm -f "$container_id"
|
||||||
|
trap - EXIT INT TERM
|
||||||
|
|
||||||
|
if [ ! -f "$ROOT_SLNX" ]; then
|
||||||
|
echo "Checkout did not produce $ROOT_SLNX under $workspace" >&2
|
||||||
|
find "$workspace" -maxdepth 2 -type f -name '*.slnx' 2>/dev/null | head -20 >&2 || true
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
- name: Resolve package version
|
||||||
|
id: version
|
||||||
|
shell: sh
|
||||||
|
run: |
|
||||||
|
set -eu
|
||||||
if [ -n "${RELEASE_TAG:-}" ]; then
|
if [ -n "${RELEASE_TAG:-}" ]; then
|
||||||
version="$RELEASE_TAG"
|
version="$RELEASE_TAG"
|
||||||
|
elif [ -n "${INPUT_PACKAGE_VERSION:-}" ]; then
|
||||||
|
version="$INPUT_PACKAGE_VERSION"
|
||||||
else
|
else
|
||||||
version="0.0.0-dev.$(date +%Y%m%d%H%M%S)"
|
version="0.0.0-dev.$(date +%Y%m%d%H%M%S)"
|
||||||
fi
|
fi
|
||||||
version="${version#v}"
|
version="${version#v}"
|
||||||
echo "VERSION=$version" >> "$GITHUB_ENV"
|
if ! printf '%s' "$version" | grep -Eq '^[0-9]+([.][0-9]+){2}(-[0-9A-Za-z][0-9A-Za-z.-]*)?([+][0-9A-Za-z][0-9A-Za-z.-]*)?$'; then
|
||||||
echo "Package version: $version"
|
echo "Invalid NuGet package version: $version" >&2
|
||||||
|
echo "Use SemVer like 1.2.3, 1.2.3-beta.1, or v1.2.3." >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
echo "version=$version" >> "$GITHUB_OUTPUT"
|
||||||
|
echo "Resolved version: $version"
|
||||||
|
|
||||||
- name: Restore selected projects
|
- name: Restore, build and pack packages
|
||||||
shell: bash
|
shell: sh
|
||||||
|
env:
|
||||||
|
VERSION: ${{ steps.version.outputs.version }}
|
||||||
run: |
|
run: |
|
||||||
set -euo pipefail
|
set -eu
|
||||||
|
if [ -z "${VERSION:-}" ]; then
|
||||||
|
echo "Package version was not resolved (steps.version.outputs.version is empty)." >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
workspace="${WORKSPACE_DIR:-${GITHUB_WORKSPACE:-$PWD}}"
|
||||||
|
cd "$workspace"
|
||||||
|
echo "Using workspace: $workspace"
|
||||||
|
package_dir="${workspace}/${PACKAGE_OUTPUT#./}"
|
||||||
|
container_id="$(docker run -d \
|
||||||
|
-v "${workspace}:/src" \
|
||||||
|
-w /src \
|
||||||
|
-e VERSION \
|
||||||
|
-e ROOT_SLNX \
|
||||||
|
-e PACKAGE_PROJECTS \
|
||||||
|
-e DOTNET_NOLOGO \
|
||||||
|
-e DOTNET_CLI_TELEMETRY_OPTOUT \
|
||||||
|
-e DOTNET_SKIP_FIRST_TIME_EXPERIENCE \
|
||||||
|
"$SDK_IMAGE" \
|
||||||
|
sleep 3600)"
|
||||||
|
trap 'docker rm -f "$container_id" >/dev/null 2>&1 || true' EXIT INT TERM
|
||||||
|
docker exec "$container_id" sh -c '
|
||||||
|
set -eu
|
||||||
|
rm -rf /src/artifacts/nuget
|
||||||
|
mkdir -p /src/artifacts/nuget
|
||||||
for project in $PACKAGE_PROJECTS; do
|
for project in $PACKAGE_PROJECTS; do
|
||||||
dotnet restore "$project" \
|
dotnet restore "$project" \
|
||||||
--verbosity minimal \
|
--verbosity minimal \
|
||||||
-p:NuGetAudit=false
|
-p:NuGetAudit=false
|
||||||
done
|
|
||||||
|
|
||||||
- name: Build and pack selected projects
|
|
||||||
shell: bash
|
|
||||||
run: |
|
|
||||||
set -euo pipefail
|
|
||||||
mkdir -p "$PACKAGE_OUTPUT"
|
|
||||||
for project in $PACKAGE_PROJECTS; do
|
|
||||||
dotnet build "$project" \
|
dotnet build "$project" \
|
||||||
--configuration Release \
|
--configuration Release \
|
||||||
--no-restore \
|
--no-restore \
|
||||||
@@ -68,30 +187,84 @@ jobs:
|
|||||||
-p:PackageVersion="$VERSION" \
|
-p:PackageVersion="$VERSION" \
|
||||||
-p:ContinuousIntegrationBuild=true \
|
-p:ContinuousIntegrationBuild=true \
|
||||||
-p:BuildInParallel=true \
|
-p:BuildInParallel=true \
|
||||||
-p:PackageOutputPath="$PWD/$PACKAGE_OUTPUT" \
|
-p:PackageOutputPath="/src/artifacts/nuget" \
|
||||||
-p:GeneratePackageOnBuild=true
|
-p:GeneratePackageOnBuild=true
|
||||||
done
|
done
|
||||||
|
'
|
||||||
|
rm -rf "$package_dir"
|
||||||
|
mkdir -p "$package_dir"
|
||||||
|
docker cp "${container_id}:/src/artifacts/nuget/." "$package_dir/"
|
||||||
|
docker rm -f "$container_id"
|
||||||
|
trap - EXIT INT TERM
|
||||||
|
package_count="$(find "$package_dir" -type f -name '*.nupkg' ! -name '*.symbols.nupkg' | wc -l | tr -d ' ')"
|
||||||
|
if [ "$package_count" = "0" ]; then
|
||||||
|
echo "No NuGet packages were produced in $package_dir." >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
echo "Packed $package_count package(s) into $package_dir."
|
||||||
|
|
||||||
- name: Push packages to BaGet
|
- name: Push packages to BaGet
|
||||||
shell: bash
|
if: ${{ gitea.event_name == 'release' || inputs.push_to_baget == true }}
|
||||||
|
shell: sh
|
||||||
env:
|
env:
|
||||||
NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }}
|
NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }}
|
||||||
run: |
|
run: |
|
||||||
set -euo pipefail
|
set -eu
|
||||||
if [ -z "${NUGET_API_KEY:-}" ]; then
|
if [ -z "${NUGET_API_KEY:-}" ]; then
|
||||||
echo "NUGET_API_KEY secret is required."
|
echo "NUGET_API_KEY secret is required." >&2
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
workspace="${WORKSPACE_DIR:-${GITHUB_WORKSPACE:-$PWD}}"
|
||||||
mapfile -t packages < <(find "$PACKAGE_OUTPUT" -type f -name '*.nupkg' ! -name '*.symbols.nupkg' | sort)
|
cd "$workspace"
|
||||||
if [ ${#packages[@]} -eq 0 ]; then
|
docker run --rm \
|
||||||
echo "No NuGet packages were produced."
|
-v "${workspace}:/src" \
|
||||||
exit 1
|
-w /src \
|
||||||
fi
|
-e NUGET_API_KEY \
|
||||||
|
-e BAGET_SOURCE_URL \
|
||||||
printf '%s\0' "${packages[@]}" | xargs -0 -n 1 -P "$NUGET_PUSH_PARALLELISM" sh -c '
|
-e NUGET_PUSH_PARALLELISM \
|
||||||
|
-e PACKAGE_OUTPUT \
|
||||||
|
"$SDK_IMAGE" \
|
||||||
|
sh -c '
|
||||||
|
set -eu
|
||||||
|
package_dir="/src/${PACKAGE_OUTPUT#./}"
|
||||||
|
find "$package_dir" -type f -name "*.nupkg" ! -name "*.symbols.nupkg" -print0 | \
|
||||||
|
xargs -0 -n 1 -P "$NUGET_PUSH_PARALLELISM" sh -c '\''
|
||||||
dotnet nuget push "$1" \
|
dotnet nuget push "$1" \
|
||||||
--source "$NUGET_SOURCE_URL" \
|
--source "$BAGET_SOURCE_URL" \
|
||||||
--api-key "$NUGET_API_KEY" \
|
--api-key "$NUGET_API_KEY" \
|
||||||
--skip-duplicate
|
--skip-duplicate
|
||||||
' sh
|
'\'' sh
|
||||||
|
'
|
||||||
|
|
||||||
|
- name: Push packages to nuget.org
|
||||||
|
if: ${{ gitea.event_name == 'workflow_dispatch' && inputs.push_to_nuget_org == true && inputs.package_version != '' }}
|
||||||
|
shell: sh
|
||||||
|
env:
|
||||||
|
NUGET_ORG_API_KEY: ${{ secrets.NUGET_ORG_API_KEY }}
|
||||||
|
run: |
|
||||||
|
set -eu
|
||||||
|
if [ -z "${NUGET_ORG_API_KEY:-}" ]; then
|
||||||
|
echo "NUGET_ORG_API_KEY secret is required for nuget.org push." >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
workspace="${WORKSPACE_DIR:-${GITHUB_WORKSPACE:-$PWD}}"
|
||||||
|
cd "$workspace"
|
||||||
|
docker run --rm \
|
||||||
|
-v "${workspace}:/src" \
|
||||||
|
-w /src \
|
||||||
|
-e NUGET_ORG_API_KEY \
|
||||||
|
-e NUGET_ORG_SOURCE_URL \
|
||||||
|
-e NUGET_PUSH_PARALLELISM \
|
||||||
|
-e PACKAGE_OUTPUT \
|
||||||
|
"$SDK_IMAGE" \
|
||||||
|
sh -c '
|
||||||
|
set -eu
|
||||||
|
package_dir="/src/${PACKAGE_OUTPUT#./}"
|
||||||
|
find "$package_dir" -type f -name "*.nupkg" ! -name "*.symbols.nupkg" -print0 | \
|
||||||
|
xargs -0 -n 1 -P "$NUGET_PUSH_PARALLELISM" sh -c '\''
|
||||||
|
dotnet nuget push "$1" \
|
||||||
|
--source "$NUGET_ORG_SOURCE_URL" \
|
||||||
|
--api-key "$NUGET_ORG_API_KEY" \
|
||||||
|
--skip-duplicate
|
||||||
|
'\'' sh
|
||||||
|
'
|
||||||
|
|||||||
@@ -1,10 +1,9 @@
|
|||||||
<Project>
|
<Project>
|
||||||
<Import Project="versions.props" />
|
<Import Project="common.props" />
|
||||||
<Import Project="common.props" Condition="Exists('$(MSBuildThisFileDirectory)common.props')" />
|
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<Company>Sufi Chain Intelligent Solutions</Company>
|
<Company>Sufi Chain Intelligent Solutions</Company>
|
||||||
<Authors>SufiChain Team</Authors>
|
<Authors>Sufi Chain Team</Authors>
|
||||||
<Product>SufiBlazor</Product>
|
<Product>SufiBlazor</Product>
|
||||||
<Copyright>Copyright © Sufi Chain Intelligent Solutions $([System.DateTime]::Now.Year)</Copyright>
|
<Copyright>Copyright © Sufi Chain Intelligent Solutions $([System.DateTime]::Now.Year)</Copyright>
|
||||||
<PackageProjectUrl>https://git.sabp.ir/sufi-chain/sufi-blazor</PackageProjectUrl>
|
<PackageProjectUrl>https://git.sabp.ir/sufi-chain/sufi-blazor</PackageProjectUrl>
|
||||||
|
|||||||
+3
-7
@@ -1,11 +1,7 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<configuration>
|
<configuration>
|
||||||
<packageSources>
|
<packageSources>
|
||||||
<clear />
|
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
|
||||||
<add key="liara-mirror" value="https://package-mirror.liara.ir/repository/nuget/index.json" />
|
<add key="nuget.sabp.ir" value="https://nuget.sabp.ir/v3/index.json" />
|
||||||
<add key="sufi-nuget" value="https://nuget.sabp.ir/v3/index.json" />
|
|
||||||
</packageSources>
|
</packageSources>
|
||||||
<auditSources>
|
|
||||||
<clear />
|
|
||||||
</auditSources>
|
|
||||||
</configuration>
|
</configuration>
|
||||||
|
|||||||
@@ -1,7 +1,9 @@
|
|||||||
<Solution>
|
<Solution>
|
||||||
<Folder Name="/Solution Items/">
|
<Folder Name="/Solution Items/">
|
||||||
|
<File Path="common.props" />
|
||||||
|
<File Path="Directory.Build.props" />
|
||||||
<File Path="NuGet.Config" />
|
<File Path="NuGet.Config" />
|
||||||
<File Path="versions.props" />
|
<File Path="README.md" />
|
||||||
</Folder>
|
</Folder>
|
||||||
<Folder Name="/src/">
|
<Folder Name="/src/">
|
||||||
<Project Path="src/SufiChain.SufiBlazor.Demo.Localization/SufiChain.SufiBlazor.Demo.Localization.csproj" />
|
<Project Path="src/SufiChain.SufiBlazor.Demo.Localization/SufiChain.SufiBlazor.Demo.Localization.csproj" />
|
||||||
|
|||||||
+2
-2
@@ -8,8 +8,8 @@
|
|||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="ConfigureAwait.Fody" Version="$(ConfigureAwaitFodyVersion)" PrivateAssets="All"/>
|
<PackageReference Include="ConfigureAwait.Fody" Version="3.3.1" PrivateAssets="All"/>
|
||||||
<PackageReference Include="Fody" Version="$(FodyVersion)">
|
<PackageReference Include="Fody" Version="6.5.3">
|
||||||
<PrivateAssets>All</PrivateAssets>
|
<PrivateAssets>All</PrivateAssets>
|
||||||
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
|
||||||
</PackageReference>
|
</PackageReference>
|
||||||
|
|||||||
+5
-5
@@ -1,4 +1,4 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<LangVersion>latest</LangVersion>
|
<LangVersion>latest</LangVersion>
|
||||||
@@ -16,13 +16,13 @@
|
|||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Volo.Abp.Localization" Version="$(AbpVersion)" />
|
<PackageReference Include="Volo.Abp.Localization" Version="10.3.0" />
|
||||||
<PackageReference Include="Volo.Abp.VirtualFileSystem" Version="$(AbpVersion)" />
|
<PackageReference Include="Volo.Abp.VirtualFileSystem" Version="10.3.0" />
|
||||||
<PackageReference Include="SufiChain.SufiAbp.UI.Domain.Shared" Version="$(SufiAbpVersion)" />
|
<PackageReference Include="SufiChain.SufiAbp.UI.Domain.Shared" Version="1.0.0-alpha.5.2" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Microsoft.Extensions.FileProviders.Embedded" Version="$(MicrosoftExtensionsFileProvidersEmbeddedVersion)" />
|
<PackageReference Include="Microsoft.Extensions.FileProviders.Embedded" Version="10.0.2" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|||||||
@@ -20,11 +20,12 @@
|
|||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ProjectReference Include="..\SufiChain.SufiBlazor.Demo.Localization\SufiChain.SufiBlazor.Demo.Localization.csproj" />
|
<ProjectReference Include="..\SufiChain.SufiBlazor.Demo.Localization\SufiChain.SufiBlazor.Demo.Localization.csproj" />
|
||||||
<ProjectReference Include="..\SufiChain.SufiBlazor\SufiChain.SufiBlazor.csproj" />
|
<ProjectReference Include="..\SufiChain.SufiBlazor\SufiChain.SufiBlazor.csproj" />
|
||||||
|
<PackageReference Include="SufiChain.SufiAbp.UI.Blazor" Version="1.0.0-alpha.5.2" />
|
||||||
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Markdig" Version="1.1.3" />
|
<PackageReference Include="Markdig" Version="1.1.3" />
|
||||||
<PackageReference Include="SufiChain.SufiAbp.UI.Blazor" Version="$(SufiAbpVersion)" />
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk.Razor">
|
<Project Sdk="Microsoft.NET.Sdk.Razor">
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>net10.0</TargetFramework>
|
<TargetFramework>net10.0</TargetFramework>
|
||||||
@@ -22,8 +22,8 @@
|
|||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="$(MicrosoftAspNetCoreComponentsWebVersion)" />
|
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="10.0.2" />
|
||||||
<PackageReference Include="Microsoft.Extensions.Localization" Version="$(MicrosoftExtensionsLocalizationVersion)" />
|
<PackageReference Include="Microsoft.Extensions.Localization" Version="10.0.2" />
|
||||||
<PackageReference Include="Markdig" Version="1.1.3" />
|
<PackageReference Include="Markdig" Version="1.1.3" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
|||||||
@@ -1,20 +0,0 @@
|
|||||||
<Project>
|
|
||||||
|
|
||||||
<PropertyGroup>
|
|
||||||
<LangVersion>latest</LangVersion>
|
|
||||||
</PropertyGroup>
|
|
||||||
|
|
||||||
<PropertyGroup>
|
|
||||||
<SufiVersion>0.0.0-alpha.1.0</SufiVersion>
|
|
||||||
<AbpVersion>10.3.0</AbpVersion>
|
|
||||||
<MicrosoftAspNetCoreComponentsWebVersion>10.0.2</MicrosoftAspNetCoreComponentsWebVersion>
|
|
||||||
<MicrosoftExtensionsLocalizationVersion>10.0.2</MicrosoftExtensionsLocalizationVersion>
|
|
||||||
<MicrosoftExtensionsFileProvidersEmbeddedVersion>10.0.2</MicrosoftExtensionsFileProvidersEmbeddedVersion>
|
|
||||||
</PropertyGroup>
|
|
||||||
|
|
||||||
<PropertyGroup>
|
|
||||||
<ConfigureAwaitFodyVersion>3.3.1</ConfigureAwaitFodyVersion>
|
|
||||||
<FodyVersion>6.5.3</FodyVersion>
|
|
||||||
</PropertyGroup>
|
|
||||||
|
|
||||||
</Project>
|
|
||||||
Reference in New Issue
Block a user