-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathNoteUI.csproj
More file actions
49 lines (46 loc) · 2.42 KB
/
NoteUI.csproj
File metadata and controls
49 lines (46 loc) · 2.42 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net10.0-windows10.0.19041.0</TargetFramework>
<TargetPlatformMinVersion>10.0.17763.0</TargetPlatformMinVersion>
<RootNamespace>NoteUI</RootNamespace>
<ApplicationManifest>app.manifest</ApplicationManifest>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<UseWinUI>true</UseWinUI>
<WindowsPackageType>None</WindowsPackageType>
<WindowsAppSDKSelfContained>true</WindowsAppSDKSelfContained>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<ApplicationIcon>app.ico</ApplicationIcon>
<EnableCudaBackend>true</EnableCudaBackend>
</PropertyGroup>
<ItemGroup>
<Content Include="app.ico">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="firebase.public.json" Condition="Exists('firebase.public.json')">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Assets\Fonts\*.otf">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<Target Name="CopyPriToPublish" AfterTargets="Publish">
<Copy SourceFiles="$(OutputPath)\NoteUI.pri" DestinationFolder="$(PublishDir)" Condition="Exists('$(OutputPath)\NoteUI.pri')" />
</Target>
<ItemGroup>
<PackageReference Include="CommunityToolkit.Labs.WinUI.Controls.MarkdownTextBlock" Version="0.1.251217-build.2433" />
<PackageReference Include="CommunityToolkit.WinUI.Extensions" Version="8.2.251219" />
<PackageReference Include="Microsoft.WindowsAppSDK" Version="1.8.260209005" />
<PackageReference Include="Microsoft.Windows.SDK.BuildTools" Version="10.0.26100.7705" />
<PackageReference Include="NAudio" Version="2.2.1" />
<PackageReference Include="Riverside.Toolkit.WinUI.Controls.Crimson" Version="2.0.0" />
<PackageReference Include="Vosk" Version="0.3.38" />
<PackageReference Include="Whisper.net" Version="1.7.4" />
<PackageReference Include="Whisper.net.Runtime" Version="1.7.4" />
<PackageReference Include="LLamaSharp" Version="0.26.0" />
<PackageReference Include="LLamaSharp.Backend.Cpu" Version="0.26.0" />
<PackageReference Include="LLamaSharp.Backend.Cuda12" Version="0.26.0" Condition="'$(EnableCudaBackend)' == 'true'" />
<PackageReference Include="System.Security.Cryptography.ProtectedData" Version="8.0.0" />
</ItemGroup>
</Project>