-
Notifications
You must be signed in to change notification settings - Fork 0
/
TranscripterUI.fsproj
82 lines (82 loc) · 4.03 KB
/
TranscripterUI.fsproj
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<!--Avalonia doesen't support TrimMode=link currently,but we are working on that https://github.com/AvaloniaUI/Avalonia/issues/6892 -->
<TrimMode>copyused</TrimMode>
<BuiltInComInteropSupport>true</BuiltInComInteropSupport>
<PublishSingleFile>true</PublishSingleFile>
<IncludeAllContentForSelfExtract>true</IncludeAllContentForSelfExtract>
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<AllowUnsafeBlocks>false</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<AllowUnsafeBlocks>false</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<Folder Include="Models\" />
<AvaloniaResource Include="Assets\**" />
<None Remove=".gitignore" />
<None Include="NLog.config">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<Compile Include="ViewModels\ViewModelBase.fs" />
<Compile Include="Models\Step.fs" />
<Compile Include="Models\InputFile.fs" />
<Compile Include="ViewModels\SelectFilesViewModel.fs" />
<Compile Include="ViewModels\ConfigureViewModel.fs" />
<Compile Include="ViewModels\FileListViewModel.fs" />
<Compile Include="ViewModels\ProcessingViewModel.fs" />
<Compile Include="ViewModels\InvalidFilesViewModel.fs" />
<Compile Include="ViewModels\CurrentStepViewModel.fs" />
<Compile Include="ViewModels\MainWindowViewModel.fs" />
<Compile Include="Views\ConfigureView.fs" />
<Compile Include="Views\CurrentStepView.axaml.fs" />
<Compile Include="Views\FileListView.axaml.fs" />
<Compile Include="Views\InvalidFilesView.axaml.fs" />
<Compile Include="Views\ProcessingView.axaml.fs" />
<Compile Include="Views\SelectFilesView.axaml.fs" />
<Compile Include="Views\MainWindow.axaml.fs" />
<Compile Include="ViewLocator.fs" />
<Compile Include="App.axaml.fs" />
<Compile Include="Program.fs" />
</ItemGroup>
<ItemGroup>
<!--This helps with theme dll-s trimming.
If you will publish your application in self-contained mode with p:PublishTrimmed=true and it will use Fluent theme Default theme will be trimmed from the output and vice versa.
https://github.com/AvaloniaUI/Avalonia/issues/5593 -->
<TrimmableAssembly Include="Avalonia.Themes.Fluent" />
<TrimmableAssembly Include="Avalonia.Themes.Default" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Avalonia" Version="0.10.14" />
<PackageReference Include="Avalonia.Desktop" Version="0.10.14" />
<!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.-->
<PackageReference Condition="'$(Configuration)' == 'Debug'" Include="Avalonia.Diagnostics" Version="0.10.14" />
<PackageReference Include="Avalonia.ReactiveUI" Version="0.10.14" />
<PackageReference Include="FSharp.Collections.ParallelSeq" Version="1.2.0" />
<PackageReference Include="NLog" Version="5.2.8" />
<PackageReference Update="FSharp.Core" Version="8.0.101" />
<PackageReference Include="Whisper.net" Version="1.5.0" />
<PackageReference Include="Whisper.net.Runtime" Version="1.5.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\TranscripterLib\TranscripterLib.fsproj" />
</ItemGroup>
<ItemGroup>
<Content Include="..\README.md">
<Link>README.md</Link>
</Content>
<Content Include="README.md" />
</ItemGroup>
<ItemGroup>
<AvaloniaXaml Remove="Icons\**" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Remove="Icons\**" />
</ItemGroup>
</Project>