-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathShowWrite.csproj
More file actions
66 lines (62 loc) · 3.01 KB
/
ShowWrite.csproj
File metadata and controls
66 lines (62 loc) · 3.01 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows10.0.17763.0</TargetFramework>
<Nullable>enable</Nullable>
<ApplicationManifest>app.manifest</ApplicationManifest>
<AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<ProduceReferenceAssembly>True</ProduceReferenceAssembly>
<GenerateDocumentationFile>False</GenerateDocumentationFile>
<SelfContained>false</SelfContained>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
</PropertyGroup>
<PropertyGroup Label="Avalonia">
<AvaloniaXamlIlDebuggerLaunch>False</AvaloniaXamlIlDebuggerLaunch>
<ApplicationIcon>icon-d1tools.com.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<AvaloniaXaml Remove="CameraService\**" />
<AvaloniaXaml Remove="Plugins\**" />
<Compile Remove="CameraService\**" />
<Compile Remove="Plugins\**" />
<EmbeddedResource Remove="CameraService\**" />
<EmbeddedResource Remove="Plugins\**" />
<None Remove="CameraService\**" />
<None Remove="Plugins\**" />
</ItemGroup>
<ItemGroup>
<AvaloniaResource Include="icon-d1tools.com.ico" />
</ItemGroup>
<ItemGroup>
<AvaloniaResource Include="font\**\*.ttf">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</AvaloniaResource>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Avalonia" Version="11.3.12" />
<PackageReference Include="Avalonia.Desktop" Version="11.3.12" />
<PackageReference Include="Avalonia.Themes.Fluent" Version="11.3.12" />
<PackageReference Include="Avalonia.Fonts.Inter" Version="11.3.12" />
<PackageReference Include="Avalonia.Diagnostics" Version="11.3.12">
<IncludeAssets Condition="'$(Configuration)' != 'Debug'">None</IncludeAssets>
<PrivateAssets Condition="'$(Configuration)' != 'Debug'">All</PrivateAssets>
</PackageReference>
<PackageReference Include="PdfiumViewer" Version="2.13.0" />
<PackageReference Include="DocumentFormat.OpenXml" Version="2.20.0" />
<PackageReference Include="OpenCvSharp4" Version="4.13.0.20260222" />
<PackageReference Include="OpenCvSharp4.runtime.win" Version="4.13.0.20260222" />
<PackageReference Include="PdfiumViewer.Native.x86_64.v8-xfa" Version="2018.4.8.256" />
<PackageReference Include="SkiaSharp" Version="3.119.2" />
<PackageReference Include="Spire.PDF" Version="12.2.6" />
<PackageReference Include="Spire.Presentation" Version="11.2.1" />
<PackageReference Include="System.Drawing.Common" Version="10.0.3" />
<PackageReference Include="System.Management" Version="10.0.3" />
<PackageReference Include="DocumentFormat.OpenXml" Version="3.0.2" />
<PackageReference Include="Aspose.Slides.NET" Version="26.2.0" />
<PackageReference Include="System.Drawing.Common" Version="6.0.0" />
<PackageReference Include="Microsoft.Toolkit.Uwp.Notifications" Version="7.1.3" />
<PackageReference Include="NAudio" Version="2.2.1" />
<PackageReference Include="Avalonia.Controls.PanAndZoom" Version="11.3.0" />
</ItemGroup>
</Project>