-
Notifications
You must be signed in to change notification settings - Fork 5.1k
Added consolidated quickstart versions for model and agent of BasicVoiceAssistant sample … #53547
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from 1 commit
5502723
d20a1ce
a3adad1
5b45252
65c7b57
1973045
698a4af
c1ddc59
0c899b0
dcd2242
997eff0
3be18d6
957bfa2
dc41415
9d6f76d
8eb4d04
a81208d
b4f98ef
a32cfcd
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -181,3 +181,6 @@ TempTypeSpecFiles/ | |
|
|
||
| # Common toolchain intermediate files | ||
| temp | ||
|
|
||
| # Appsettings files | ||
| appsettings.json | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| // See https://aka.ms/new-console-template for more information | ||
| Console.WriteLine("Hello, World!"); | ||
goergenj marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| <Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
|
|
||
| <PropertyGroup> | ||
| <OutputType>Exe</OutputType> | ||
| <TargetFramework>net9.0</TargetFramework> | ||
| <RootNamespace>azure_sdk_for_net</RootNamespace> | ||
| <ImplicitUsings>enable</ImplicitUsings> | ||
| <Nullable>enable</Nullable> | ||
| </PropertyGroup> | ||
|
|
||
| </Project> | ||
goergenj marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
goergenj marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,73 @@ | ||
| ## Ignore Visual Studio temporary files, build results, and | ||
| ## files generated by popular Visual Studio add-ons. | ||
|
|
||
| # User-specific files | ||
| *.suo | ||
| *.user | ||
| *.sln.docstates | ||
|
|
||
| # Build results | ||
| [Dd]ebug/ | ||
| [Dd]ebugPublic/ | ||
| [Rr]elease/ | ||
| x64/ | ||
| build/ | ||
| bld/ | ||
| [Bb]in/ | ||
| [Oo]bj/ | ||
|
|
||
| # MSTest test Results | ||
| [Tt]est[Rr]esult*/ | ||
| [Bb]uild[Ll]og.* | ||
|
|
||
| #NUNIT | ||
| *.VisualState.xml | ||
| TestResult.xml | ||
|
|
||
| # Build Results of an ATL Project | ||
| [Dd]ebugPS/ | ||
| [Rr]eleasePS/ | ||
| dlldata.c | ||
|
|
||
| *_i.c | ||
| *_p.c | ||
| *_i.h | ||
| *.ilk | ||
| *.meta | ||
| *.obj | ||
| *.pch | ||
| *.pdb | ||
| *.pgc | ||
| *.pgd | ||
| *.rsp | ||
| *.sbr | ||
| *.tlb | ||
| *.tli | ||
| *.tlh | ||
| *.tmp | ||
| *.tmp_proj | ||
| *.log | ||
| *.vspscc | ||
| *.vssscc | ||
| .builds | ||
| *.pidb | ||
| *.svclog | ||
| *.scc | ||
|
|
||
| # Visual Studio cache/options directory | ||
| .vs/ | ||
|
|
||
| # MSBuild Binary and Structured Log | ||
| *.binlog | ||
|
|
||
| # NuGet Packages Directory | ||
| packages/ | ||
| *.nupkg | ||
| # The packages folder can be ignored because of Package Restore | ||
| **/packages/* | ||
|
|
||
| # User settings and secrets | ||
| appsettings.development.json | ||
| appsettings.local.json | ||
| appsettings.json | ||
| *.user |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,44 @@ | ||
| <Project Sdk="Microsoft.NET.Sdk"> | ||
|
|
||
| <PropertyGroup> | ||
| <OutputType>Exe</OutputType> | ||
| <TargetFrameworks>net8.0</TargetFrameworks> | ||
| <Nullable>enable</Nullable> | ||
| <ImplicitUsings>enable</ImplicitUsings> | ||
| <AssemblyName>BasicVoiceAssistantConsolidated</AssemblyName> | ||
| <RootNamespace>Azure.AI.VoiceLive.Samples</RootNamespace> | ||
| <IsSamplesProject>true</IsSamplesProject> | ||
| <SupportsNetStandard20>false</SupportsNetStandard20> | ||
| </PropertyGroup> | ||
|
|
||
| <ItemGroup> | ||
| <PackageReference Include="Azure.Identity" Version="1.12.1"/> | ||
|
||
| <PackageReference Include="NAudio" Version="2.2.1"/> | ||
|
||
| <PackageReference Include="Microsoft.Extensions.Configuration" Version="8.0.0"/> | ||
| <PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="8.0.0"/> | ||
| <PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="8.0.0"/> | ||
| <PackageReference Include="Microsoft.Extensions.Logging" Version="8.0.1"/> | ||
| <PackageReference Include="Microsoft.Extensions.Logging.Console" Version="8.0.1"/> | ||
| <PackageReference Include="System.CommandLine" Version="2.0.0-beta4.22272.1" /> | ||
| <PackageReference Include="System.Threading.Channels" Version="8.0.0"/> | ||
| </ItemGroup> | ||
|
|
||
| <!-- Use project reference (works in the repository context) --> | ||
| <ItemGroup> | ||
| <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,20 @@ | ||
| <Project> | ||
| <!-- Completely stop inheriting from any parent Directory.Build files --> | ||
| <PropertyGroup> | ||
| <ImportDirectoryBuildProps>false</ImportDirectoryBuildProps> | ||
| <ImportDirectoryBuildTargets>false</ImportDirectoryBuildTargets> | ||
| <ImportRepoCommonSettings>false</ImportRepoCommonSettings> | ||
| </PropertyGroup> | ||
|
|
||
| <!-- Basic properties for standalone project --> | ||
| <PropertyGroup> | ||
| <TargetFramework>net8.0</TargetFramework> | ||
| <Nullable>enable</Nullable> | ||
| <ImplicitUsings>enable</ImplicitUsings> | ||
| <OutputType>Exe</OutputType> | ||
| <IsPackable>false</IsPackable> | ||
| <GenerateDocumentationFile>false</GenerateDocumentationFile> | ||
| <IsSamplesProject>false</IsSamplesProject> | ||
| <RestorePackagesWithLockFile>false</RestorePackagesWithLockFile> | ||
| </PropertyGroup> | ||
| </Project> |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| <?xml version="1.0" encoding="utf-8"?> | ||
goergenj marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| <configuration> | ||
| <packageSources> | ||
| <clear /> | ||
| <!-- Use only the public NuGet.org feed for standalone distribution --> | ||
| <add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" /> | ||
|
||
| </packageSources> | ||
| <disabledPackageSources> | ||
| <clear /> | ||
| </disabledPackageSources> | ||
| </configuration> | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please revert. You should not be making changes outside of your /sdk directory.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should be reverted.