Public Access
73 lines
4.4 KiB
XML
73 lines
4.4 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>net10.0;net10.0-windows</TargetFrameworks>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<PreserveCompilationContext>true</PreserveCompilationContext>
|
|
<MicrosoftSpeechVersion>1.50.0</MicrosoftSpeechVersion>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">
|
|
<OutputType>WinExe</OutputType>
|
|
<ApplicationIcon>Assets\meeting-assistant.ico</ApplicationIcon>
|
|
<PlatformTarget>x64</PlatformTarget>
|
|
<UseWPF>true</UseWPF>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<InternalsVisibleTo Include="MeetingAssistant.Tests" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Agents.AI.OpenAI" Version="1.6.2" />
|
|
<PackageReference Include="DiffPlex" Version="1.9.0" />
|
|
<PackageReference Include="Microsoft.CognitiveServices.Speech" Version="$(MicrosoftSpeechVersion)" />
|
|
<PackageReference Include="Microsoft.CognitiveServices.Speech.Extension.MAS" Version="$(MicrosoftSpeechVersion)" ExcludeAssets="build" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="10.0.8" />
|
|
<PackageReference Include="NAudio" Version="2.3.0" />
|
|
<PackageReference Include="NCalcSync" Version="5.12.0" />
|
|
<PackageReference Include="RazorLight" Version="2.3.1" />
|
|
<PackageReference Include="System.Drawing.Common" Version="10.0.8" />
|
|
<PackageReference Include="Whisper.net" Version="1.9.0" />
|
|
<PackageReference Include="Whisper.net.Runtime" Version="1.9.1" />
|
|
<PackageReference Include="YamlDotNet" Version="18.0.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">
|
|
<PackageReference Include="H.NotifyIcon.Uno.WinUI" Version="2.4.1" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Update="appsettings*.json" CopyToOutputDirectory="PreserveNewest" CopyToPublishDirectory="PreserveNewest" TargetPath="%(Filename)%(Extension)" />
|
|
<None Update="Assets\meeting-assistant.ico" CopyToOutputDirectory="PreserveNewest" CopyToPublishDirectory="PreserveNewest" />
|
|
<None Include="..\docs\meeting-workflow-engine.md" Link="docs\meeting-workflow-engine.md" CopyToOutputDirectory="PreserveNewest" CopyToPublishDirectory="PreserveNewest" />
|
|
<None Include="..\docs\meeting-assistant-configuration.md" Link="docs\meeting-assistant-configuration.md" CopyToOutputDirectory="PreserveNewest" CopyToPublishDirectory="PreserveNewest" />
|
|
<None Include="Content\Project-AGENTS.md" CopyToOutputDirectory="PreserveNewest" CopyToPublishDirectory="PreserveNewest" />
|
|
<None Include="..\openspec\specs\**\*.md" Link="openspec\specs\%(RecursiveDir)%(Filename)%(Extension)" CopyToOutputDirectory="PreserveNewest" CopyToPublishDirectory="PreserveNewest" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">
|
|
<None Include="$(NuGetPackageRoot)microsoft.cognitiveservices.speech.extension.mas\$(MicrosoftSpeechVersion)\contentFiles\any\any\models\aec_v1.fpie" Link="runtimes\win-x64\native\MASmodels\aec_v1.fpie" CopyToOutputDirectory="PreserveNewest" CopyToPublishDirectory="PreserveNewest" />
|
|
<None Include="$(NuGetPackageRoot)microsoft.cognitiveservices.speech.extension.mas\$(MicrosoftSpeechVersion)\contentFiles\any\any\models\pns_avg4.fpie" Link="runtimes\win-x64\native\MASmodels\pns_avg4.fpie" CopyToOutputDirectory="PreserveNewest" CopyToPublishDirectory="PreserveNewest" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<MeetingAssistantRootConfig Include="$(MSBuildProjectDirectory)\appsettings*.json" />
|
|
</ItemGroup>
|
|
|
|
<Target Name="CopyMeetingAssistantConfigToPublishRoot" AfterTargets="Publish">
|
|
<Copy SourceFiles="@(MeetingAssistantRootConfig)" DestinationFolder="$(PublishDir)" SkipUnchangedFiles="true" />
|
|
</Target>
|
|
|
|
<ItemGroup Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) != 'windows'">
|
|
<Compile Remove="Hotkeys\GlobalHotkeyService.cs" />
|
|
<Compile Remove="Recording\NaudioCaptureSource.cs" />
|
|
<Compile Remove="MeetingNotes\OutlookClassicMeetingMetadataProvider.Windows.cs" />
|
|
<Compile Remove="Screenshots\ActiveWindowScreenshotCapture.Windows.cs" />
|
|
<Compile Remove="Taskbar\UnoTaskbarIconService.Windows.cs" />
|
|
<Compile Remove="Workflow\WpfWorkflowRulesEditorWindowService.Windows.cs" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|