Public Access
62 lines
2.9 KiB
XML
62 lines
2.9 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>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">
|
|
<OutputType>WinExe</OutputType>
|
|
<ApplicationIcon>Assets\meeting-assistant.ico</ApplicationIcon>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<InternalsVisibleTo Include="MeetingAssistant.Tests" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Agents.AI.OpenAI" Version="1.7.0" />
|
|
<PackageReference Include="DiffPlex" Version="1.9.0" />
|
|
<PackageReference Include="Microsoft.CognitiveServices.Speech" Version="1.50.0" />
|
|
<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.0" />
|
|
<PackageReference Include="YamlDotNet" Version="18.0.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">
|
|
<PackageReference Include="Aprillz.MewUI.Windows" Version="0.15.2" />
|
|
<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" />
|
|
</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\MewUiWorkflowRulesEditorWindowService.Windows.cs" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|