Skip to content

Commit 072a1c1

Browse files
update (#4288)
1 parent bd81183 commit 072a1c1

9 files changed

+22
-4
lines changed

.azure/pipelines/build.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ parameters:
3030
- name: version_suffix
3131
displayName: Version suffix
3232
type: string
33-
default: ci.$(Build.BuildNumber)
33+
default: dev.$(Build.BuildNumber)
3434
- name: codesign
3535
displayName: Enable code signing
3636
type: boolean

dotnet/Directory.Build.props

+5-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
<EnableNetAnalyzers>true</EnableNetAnalyzers>
2222
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
2323
<IsTestProject>false</IsTestProject>
24-
2524
<DebugType>embedded</DebugType>
2625
<DebugSymbols>true</DebugSymbols>
2726
</PropertyGroup>
@@ -30,6 +29,11 @@
3029
<RepoRoot>$(MSBuildThisFileDirectory)</RepoRoot>
3130
</PropertyGroup>
3231

32+
<PropertyGroup Condition="'$(MSBuildProjectName.StartsWith(`AutoGen`))' == 'true'">
33+
<VersionPrefix>$(VersionPrefixForAutoGen0_2)</VersionPrefix>
34+
<IsAutoGen0_2>true</IsAutoGen0_2>
35+
</PropertyGroup>
36+
3337
<PropertyGroup Condition="'$(IsTestProject)' == 'true'">
3438
<NoWarn>$(NoWarn);CA1829</NoWarn>
3539
</PropertyGroup>

dotnet/eng/MetaInfo.props

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<PropertyGroup>
4-
<VersionPrefix>0.2.2</VersionPrefix>
4+
<VersionPrefix>0.4.0</VersionPrefix>
5+
<VersionPrefixForAutoGen0_2>0.2.2</VersionPrefixForAutoGen0_2>
56
<Authors>AutoGen</Authors>
67
<PackageProjectUrl>https://microsoft.github.io/autogen-for-net/</PackageProjectUrl>
78
<RepositoryUrl>https://github.com/microsoft/autogen</RepositoryUrl>

dotnet/samples/dev-team/DevTeam.Backend/DevTeam.Backend.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
</ItemGroup>
3030

3131
<ItemGroup>
32-
<ProjectReference Include="..\..\..\src\Microsoft.AutoGen\Extensions\ServiceDefaults\Microsoft.AutoGen.Extensions.Aspire.csproj" />
32+
<ProjectReference Include="..\..\..\src\Microsoft.AutoGen\Extensions\Aspire\Microsoft.AutoGen.Extensions.Aspire.csproj" />
3333
<ProjectReference Include="..\DevTeam.Shared\DevTeam.Shared.csproj" />
3434
<ProjectReference Include="..\..\..\src\Microsoft.AutoGen\Extensions\SemanticKernel\Microsoft.AutoGen.Extensions.SemanticKernel.csproj" />
3535
</ItemGroup>

dotnet/src/Microsoft.AutoGen/Abstractions/Microsoft.AutoGen.Abstractions.csproj

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
<Nullable>enable</Nullable>
77
</PropertyGroup>
88

9+
<Import Project="$(RepoRoot)/nuget/nuget-package.props" />
10+
911
<ItemGroup>
1012
<Protobuf Include="..\..\..\..\protos\agent_worker.proto" GrpcServices="Client;Server" Link="Protos\agent_worker.proto" />
1113
<Protobuf Include="..\..\..\..\protos\cloudevent.proto" GrpcServices="Client;Server" Link="Protos\cloudevent.proto" />

dotnet/src/Microsoft.AutoGen/Agents/Microsoft.AutoGen.Agents.csproj

+3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66
<Nullable>enable</Nullable>
77
</PropertyGroup>
88

9+
<Import Project="$(RepoRoot)/nuget/nuget-package.props" />
10+
11+
912
<ItemGroup>
1013
<ProjectReference Include="..\Abstractions\Microsoft.AutoGen.Abstractions.csproj" />
1114
<ProjectReference Include="..\Extensions\Aspire\Microsoft.AutoGen.Extensions.Aspire.csproj" />

dotnet/src/Microsoft.AutoGen/Extensions/Aspire/Microsoft.AutoGen.Extensions.Aspire.csproj

+3
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55
<Nullable>enable</Nullable>
66
<IsAspireSharedProject>true</IsAspireSharedProject>
77
</PropertyGroup>
8+
9+
<Import Project="$(RepoRoot)/nuget/nuget-package.props" />
10+
811
<ItemGroup>
912
<FrameworkReference Include="Microsoft.AspNetCore.App" />
1013
<PackageReference Include="Microsoft.Extensions.Http.Resilience" />

dotnet/src/Microsoft.AutoGen/Extensions/MEAI/Microsoft.AutoGen.Extensions.MEAI.csproj

+3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
<ImplicitUsings>enable</ImplicitUsings>
55
<Nullable>enable</Nullable>
66
</PropertyGroup>
7+
8+
<Import Project="$(RepoRoot)/nuget/nuget-package.props" />
9+
710
<ItemGroup>
811
<PackageReference Include="Aspire.Azure.AI.OpenAI" />
912
<PackageReference Include="Azure.AI.OpenAI" />

dotnet/src/Microsoft.AutoGen/Extensions/SemanticKernel/Microsoft.AutoGen.Extensions.SemanticKernel.csproj

+2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
<Nullable>enable</Nullable>
66
</PropertyGroup>
77

8+
<Import Project="$(RepoRoot)/nuget/nuget-package.props" />
9+
810
<ItemGroup>
911
<PackageReference Include="Azure.AI.OpenAI" />
1012
<PackageReference Include="Microsoft.SemanticKernel" />

0 commit comments

Comments
 (0)