-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathCustomerServiceBot.csproj
More file actions
34 lines (29 loc) · 1.35 KB
/
CustomerServiceBot.csproj
File metadata and controls
34 lines (29 loc) · 1.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFrameworks>net9.0</TargetFrameworks>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<AssemblyName>CustomerServiceBot</AssemblyName>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Azure.AI.VoiceLive" Version="1.0.0" />
<PackageReference Include="Azure.Identity" Version="1.17.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="9.0.10" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="9.0.10" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="9.0.10" />
<PackageReference Include="NAudio" Version="2.2.1" />
<PackageReference Include="System.CommandLine" Version="2.0.0-beta4.22272.1" />
</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>