Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
5502723
Added consolidated quickstart versions of BasicVoiceAssistant sample …
goergenj Oct 29, 2025
d20a1ce
Update sdk/ai/Azure.AI.VoiceLive/samples/BasicVoiceAssistant/consolid…
goergenj Oct 29, 2025
a3adad1
Update sdk/ai/Azure.AI.VoiceLive/samples/BasicVoiceAssistant/consolid…
goergenj Oct 29, 2025
5b45252
Update sdk/ai/Azure.AI.VoiceLive/samples/BasicVoiceAssistant/consolid…
goergenj Oct 29, 2025
65c7b57
Update azure-sdk-for-net.csproj
goergenj Oct 29, 2025
1973045
Update Program.cs
goergenj Oct 29, 2025
698a4af
Delete Program.cs
goergenj Oct 29, 2025
c1ddc59
Updated based on review comments
goergenj Oct 29, 2025
0c899b0
Updated based on review comments
goergenj Oct 29, 2025
dcd2242
Fixing comments from review, cleaning up unrequired files and fixing …
goergenj Oct 29, 2025
997eff0
Renamed consolidated learn docs quickstart versions and moved them up…
goergenj Oct 31, 2025
3be18d6
Fixed review comment.
goergenj Oct 31, 2025
957bfa2
Fixed review comment.
goergenj Oct 31, 2025
dc41415
Removed NAudio unapproved dependency package.
goergenj Oct 31, 2025
9d6f76d
Update sdk/ai/Azure.AI.VoiceLive/samples/.gitignore
goergenj Oct 31, 2025
8eb4d04
Update sdk/ai/Azure.AI.VoiceLive/samples/AgentVoiceAssistantQuickstar…
goergenj Oct 31, 2025
a81208d
Update sdk/ai/Azure.AI.VoiceLive/samples/AgentVoiceAssistantQuickstar…
goergenj Oct 31, 2025
b4f98ef
Update sdk/ai/Azure.AI.VoiceLive/samples/BasicVoiceAssistantQuickstar…
goergenj Oct 31, 2025
a32cfcd
Update sdk/ai/Azure.AI.VoiceLive/samples/BasicVoiceAssistantQuickstar…
goergenj Oct 31, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions sdk/ai/Azure.AI.VoiceLive/samples/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Ignore settings files to avoid committing secrets
appsettings.json
appsettings.development.json
appsettings.production.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFrameworks>net8.0</TargetFrameworks>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<AssemblyName>AgentVoiceAssistantQuickstart</AssemblyName>
<IsSamplesProject>true</IsSamplesProject>
<SupportsNetStandard20>false</SupportsNetStandard20>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Azure.Identity"/>
<PackageReference Include="Microsoft.Extensions.Configuration" VersionOverride="8.0.0"/>
<PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" VersionOverride="8.0.0"/>
<PackageReference Include="Microsoft.Extensions.Configuration.Json" VersionOverride="8.0.0"/>
<PackageReference Include="Microsoft.Extensions.Logging" VersionOverride="8.0.0"/>
<PackageReference Include="Microsoft.Extensions.Logging.Console" VersionOverride="8.0.0"/>
<PackageReference Include="System.CommandLine" VersionOverride="2.0.0-beta4.22272.1" />
<PackageReference Include="System.Threading.Channels" VersionOverride="9.0.8"/>
</ItemGroup>

<ItemGroup>
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This will fail to build outside of the repository.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I updated this based on the version in the parent folder and tested the new version. Please re-check.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The parent folder is incorrect and will not build outside of this repository. It also snuck in an unapproved dependency via use of override which will be remediated.

Stand-alone samples must be buildable inside the repository and stand-alone, as the docs process will export them as stand-alone samples.

<ProjectReference Include="..\..\src\Azure.AI.VoiceLive.csproj" />
</ItemGroup>

<ItemGroup>
<None Update="appsettings.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>

<Target Name="OverwriteWithDevelopmentSettings" AfterTargets="Build" Condition="'$(Configuration)' == 'Debug'">
<Copy SourceFiles="appsettings.development.json"
DestinationFiles="$(OutputPath)appsettings.json"
OverwriteReadOnlyFiles="true"
Condition="Exists('appsettings.development.json')" />
</Target>

</Project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<configuration>
<packageSources>
<clear />
<!-- Use the Azure DevOps feed for package distribution -->
<add key="azure-sdk-for-net" value="https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-net/nuget/v3/index.json" />
</packageSources>
<disabledPackageSources>
<clear />
</disabledPackageSources>
</configuration>
Loading
Loading