Skip to content

Commit d02e186

Browse files
committed
v1.0.0-alpha.2
1 parent 11c2e30 commit d02e186

3 files changed

Lines changed: 23 additions & 9 deletions

File tree

src/AgentNet.Durable/AgentNet.Durable.fsproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
44
<OutputType>Library</OutputType>
@@ -9,7 +9,7 @@
99
<!-- NuGet Package Metadata -->
1010
<PropertyGroup>
1111
<PackageId>AgentNet.Durable</PackageId>
12-
<Version>1.0.0-alpha.1</Version>
12+
<Version>1.0.0-alpha.2</Version>
1313
<Authors>Jordan Marr</Authors>
1414
<Description>Durable workflow compilation for AgentNet. Compiles F# workflow definitions to Microsoft Azure Durable Functions (MAF) format for production deployment.</Description>
1515
<PackageTags>fsharp;ai;agents;durable;azure-functions;workflows;maf</PackageTags>

src/AgentNet/AgentNet.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<!-- NuGet Package Metadata -->
1010
<PropertyGroup>
1111
<PackageId>AgentNet</PackageId>
12-
<Version>1.0.0-alpha.1</Version>
12+
<Version>1.0.0-alpha.2</Version>
1313
<Authors>Jordan Marr</Authors>
1414
<Description>A beautiful F# library for building AI agents on .NET. Wraps Microsoft Agent Framework with idiomatic F# APIs using quotation-based tools, pipeline-style agents, and computation expression workflows.</Description>
1515
<PackageTags>fsharp;ai;agents;llm;microsoft-agent-framework;workflows</PackageTags>

src/AgentNet/publish.bat

Lines changed: 20 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,29 +7,43 @@ echo.
77
:: Clean previous builds
88
echo Cleaning previous builds...
99
dotnet clean -c Release --verbosity quiet
10+
dotnet clean -c Release --verbosity quiet --project ..\AgentNet.Durable\AgentNet.Durable.fsproj
1011

11-
:: Build and pack
12+
:: Build and pack AgentNet
1213
echo.
13-
echo Building and packing...
14+
echo Building and packing AgentNet...
1415
dotnet pack -c Release
1516

1617
if %ERRORLEVEL% NEQ 0 (
1718
echo.
18-
echo ERROR: Build failed!
19+
echo ERROR: AgentNet build failed!
20+
exit /b %ERRORLEVEL%
21+
)
22+
23+
:: Build and pack AgentNet.Durable
24+
echo.
25+
echo Building and packing AgentNet.Durable...
26+
dotnet pack -c Release --project ..\AgentNet.Durable\AgentNet.Durable.fsproj
27+
28+
if %ERRORLEVEL% NEQ 0 (
29+
echo.
30+
echo ERROR: AgentNet.Durable build failed!
1931
exit /b %ERRORLEVEL%
2032
)
2133

2234
:: Show the output
2335
echo.
2436
echo ========================================
25-
echo Package created successfully!
37+
echo Packages created successfully!
2638
echo ========================================
2739
echo.
28-
echo Package location:
40+
echo AgentNet package:
2941
dir /b bin\Release\*.nupkg
3042
echo.
31-
echo Full path: %CD%\bin\Release\
43+
echo AgentNet.Durable package:
44+
dir /b ..\AgentNet.Durable\bin\Release\*.nupkg
3245
echo.
3346
echo To publish to NuGet.org:
3447
echo dotnet nuget push bin\Release\AgentNet.*.nupkg --api-key YOUR_API_KEY --source https://api.nuget.org/v3/index.json
48+
echo dotnet nuget push ..\AgentNet.Durable\bin\Release\AgentNet.Durable.*.nupkg --api-key YOUR_API_KEY --source https://api.nuget.org/v3/index.json
3549
echo.

0 commit comments

Comments
 (0)