Skip to content

Commit 66d0950

Browse files
authored
.Net Agents - Fix agent runtime package publishing (#12171)
### Motivation and Context <!-- Thank you for your contribution to the semantic-kernel repo! Please help reviewers and future users, providing the following information: 1. Why is this change required? 2. What problem does it solve? 3. What scenario does it contribute to? 4. If it fixes an open issue, please link to the issue here. --> Include `nuget-package.props` ### Description <!-- Describe your changes, the overall approach, the underlying design. These notes will help understanding how your code works. Thanks! --> Include is required. ### Contribution Checklist <!-- Before submitting this PR, please make sure: --> - [X] The code builds clean without any errors or warnings - [X] The PR follows the [SK Contribution Guidelines](https://github.com/microsoft/semantic-kernel/blob/main/CONTRIBUTING.md) and the [pre-submission formatting script](https://github.com/microsoft/semantic-kernel/blob/main/CONTRIBUTING.md#development-scripts) raises no violations - [X] All unit tests pass, and I have added new tests where possible - [X] I didn't break anyone 😄
1 parent b88f052 commit 66d0950

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

dotnet/src/Agents/Runtime/Abstractions/Runtime.Abstractions.csproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
<VersionSuffix>preview</VersionSuffix>
99
<DefineConstants>SKIPSKABSTRACTION</DefineConstants>
1010
</PropertyGroup>
11+
12+
<Import Project="$(RepoRoot)/dotnet/nuget/nuget-package.props" />
1113

1214
<ItemGroup>
1315
<Compile Include="$(RepoRoot)/dotnet/src/InternalUtilities/src/System/*" Link="%(RecursiveDir)Utilities/%(Filename)%(Extension)" />

dotnet/src/Agents/Runtime/Core/Runtime.Core.csproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
<DefineConstants>SKIPSKABSTRACTION</DefineConstants>
99
</PropertyGroup>
1010

11+
<Import Project="$(RepoRoot)/dotnet/nuget/nuget-package.props" />
12+
1113
<ItemGroup>
1214
<Compile Include="$(RepoRoot)/dotnet/src/InternalUtilities/src/System/*" Link="%(RecursiveDir)Utilities/%(Filename)%(Extension)" />
1315
<Compile Include="$(RepoRoot)/dotnet/src/InternalUtilities/src/Diagnostics/NullableAttributes.cs" Link="%(RecursiveDir)Utilities/%(Filename)%(Extension)" />

0 commit comments

Comments
 (0)