-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathdebug_interface.csproj
More file actions
65 lines (54 loc) · 2.53 KB
/
Copy pathdebug_interface.csproj
File metadata and controls
65 lines (54 loc) · 2.53 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<BuiltInComInteropSupport>true</BuiltInComInteropSupport>
<ApplicationManifest>app.manifest</ApplicationManifest>
<AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
<AssemblyName>debug_interface</AssemblyName>
</PropertyGroup>
<ItemGroup>
<AvaloniaResource Include="Assets\**" />
</ItemGroup>
<!-- 添加对 proto 项目的直接引用 -->
<ItemGroup>
<ProjectReference Include="..\..\..\dependency\proto\proto.csproj" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\logic\PlayBack\Playback.csproj" />
</ItemGroup>
<ItemGroup>
<!-- 使用正斜杠 / 确保跨平台兼容 -->
<Compile Include="..\..\..\installer\Data\ConfigFileData.cs" Link="Interact/ConfigFileData.cs">
<!-- 添加路径存在性检查 -->
<Error Condition="!Exists('../../../installer/Data/ConfigFileData.cs')" />
</Compile>
<Compile Include="..\..\..\installer/Model/Logger.cs" Link="Interact/Logger.cs">
<Error Condition="!Exists('../../installer/Model/Logger.cs')" />
</Compile>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Avalonia" Version="11.3.17" />
<PackageReference Include="Avalonia.Desktop" Version="11.3.17" />
<PackageReference Include="Avalonia.Themes.Fluent" Version="11.3.17" />
<PackageReference Include="Avalonia.Fonts.Inter" Version="11.3.17" />
<!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.-->
<PackageReference Include="Avalonia.Diagnostics" Version="11.3.17">
<IncludeAssets Condition="'$(Configuration)' != 'Debug'">None</IncludeAssets>
<PrivateAssets Condition="'$(Configuration)' != 'Debug'">All</PrivateAssets>
</PackageReference>
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.4.0" />
<PackageReference Include="FrameRateTask" Version="1.2.0" />
<PackageReference Include="Google.Protobuf" Version="3.30.2" />
<PackageReference Include="Grpc.Net.Client" Version="2.70.0" />
<PackageReference Include="Grpc.Tools" Version="2.71.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="System.Reactive" Version="6.0.1" />
</ItemGroup>
<ItemGroup>
<Folder Include="Utili\" />
</ItemGroup>
</Project>