Public Access
29 lines
1.0 KiB
XML
29 lines
1.0 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>net10.0;net10.0-windows</TargetFrameworks>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<InternalsVisibleTo Include="MeetingAssistant.Tests" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Agents.AI.OpenAI" Version="1.6.1" />
|
|
<PackageReference Include="Microsoft.CognitiveServices.Speech" Version="1.50.0" />
|
|
<PackageReference Include="NAudio" Version="2.3.0" />
|
|
<PackageReference Include="Whisper.net" Version="1.9.0" />
|
|
<PackageReference Include="Whisper.net.Runtime" Version="1.9.0" />
|
|
<PackageReference Include="YamlDotNet" Version="17.1.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition="'$(TargetFramework)' != 'net10.0-windows'">
|
|
<Compile Remove="Hotkeys\GlobalHotkeyService.cs" />
|
|
<Compile Remove="Recording\NaudioCaptureSource.cs" />
|
|
<Compile Remove="MeetingNotes\OutlookClassicMeetingMetadataProvider.Windows.cs" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|