From 167c77a8b5c6136f485c08cc8f84ff7a19613c91 Mon Sep 17 00:00:00 2001
From: Ikiru Yoshizaki <3856350+guitarrapc@users.noreply.github.com>
Date: Tue, 19 Aug 2025 15:11:58 +0900
Subject: [PATCH 1/2] chore: add README.md to nuget package
---
Directory.Build.props | 39 +++++++++++++++-----------
sandbox/MinimumGrpc/MinimumGrpc.csproj | 2 +-
2 files changed, 23 insertions(+), 18 deletions(-)
diff --git a/Directory.Build.props b/Directory.Build.props
index 8a3b9d1..1f891fb 100644
--- a/Directory.Build.props
+++ b/Directory.Build.props
@@ -1,20 +1,25 @@
-
- true
- $(NoWarn);CS1591
+
+ true
+ $(NoWarn);CS1591
-
- $(Version)
- Cysharp
- Cysharp
- © Cysharp, Inc.
- https://github.com/Cysharp/DFrame
- $(PackageProjectUrl)
- git
- loadtesting
- MIT
- Icon.png
- Distributed loadtesting framework for .NET and Unity.
- $(MSBuildThisFileDirectory)opensource.snk
-
+
+ $(Version)
+ Cysharp
+ Cysharp
+ © Cysharp, Inc.
+ https://github.com/Cysharp/DFrame
+ README.md
+ $(PackageProjectUrl)
+ git
+ loadtesting
+ MIT
+ Icon.png
+ Distributed loadtesting framework for .NET and Unity.
+ $(MSBuildThisFileDirectory)opensource.snk
+
+
+
+
+
diff --git a/sandbox/MinimumGrpc/MinimumGrpc.csproj b/sandbox/MinimumGrpc/MinimumGrpc.csproj
index 2576a78..ea5b46c 100644
--- a/sandbox/MinimumGrpc/MinimumGrpc.csproj
+++ b/sandbox/MinimumGrpc/MinimumGrpc.csproj
@@ -4,7 +4,7 @@
net8.0
enable
enable
- false
+ false
From 46e6502fb794090954aded821b68c25dc71c5f96 Mon Sep 17 00:00:00 2001
From: Ikiru Yoshizaki <3856350+guitarrapc@users.noreply.github.com>
Date: Tue, 19 Aug 2025 16:02:22 +0900
Subject: [PATCH 2/2] ci: add dotnet pack and use Release
---
.github/workflows/build-debug.yaml | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/build-debug.yaml b/.github/workflows/build-debug.yaml
index 0329d22..abd8713 100644
--- a/.github/workflows/build-debug.yaml
+++ b/.github/workflows/build-debug.yaml
@@ -18,8 +18,9 @@ jobs:
steps:
- uses: Cysharp/Actions/.github/actions/checkout@main
- uses: Cysharp/Actions/.github/actions/setup-dotnet@main
- - run: dotnet build -c Debug
- #- run: dotnet test -c Debug --no-build
+ - run: dotnet build -c Release
+ - run: dotnet test -c Release --no-build
+ - run: dotnet pack -c Release --no-build -p:IncludeSymbols=true -p:SymbolPackageFormat=snupkg -o $GITHUB_WORKSPACE/artifacts
build-unity:
if: ${{ (github.event_name == 'push' && github.repository_owner == 'Cysharp') || startsWith(github.event.pull_request.head.label, 'Cysharp:') }}