-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathModerBox.csproj
More file actions
74 lines (66 loc) · 3.73 KB
/
Copy pathModerBox.csproj
File metadata and controls
74 lines (66 loc) · 3.73 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
67
68
69
70
71
72
73
74
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<Nullable>enable</Nullable>
<BuiltInComInteropSupport>true</BuiltInComInteropSupport>
<ApplicationManifest>app.manifest</ApplicationManifest>
<AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
<ApplicationIcon>Assets\avalonia-logo.ico</ApplicationIcon>
</PropertyGroup>
<PropertyGroup Condition="'$(PublishProfile)' == 'native'">
<PublishAot>true</PublishAot>
</PropertyGroup>
<ItemGroup>
<RdXmlFile Include="rd.xml" />
<AvaloniaResource Include="Assets\**" />
</ItemGroup>
<ItemGroup>
<Content Include="Assets\avalonia-logo.ico" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Avalonia" Version="11.3.10" />
<PackageReference Include="Avalonia.Desktop" Version="11.3.10" />
<PackageReference Include="Avalonia.Themes.Fluent" Version="11.3.10" />
<PackageReference Include="Avalonia.Fonts.Inter" Version="11.3.10" />
<!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.-->
<PackageReference Condition="'$(Configuration)' == 'Debug'" Include="Avalonia.Diagnostics" Version="11.3.10" />
<PackageReference Include="Avalonia.ReactiveUI" Version="11.3.9" />
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.4.0" />
<PackageReference Include="Coravel" Version="6.0.2" />
<PackageReference Include="FluentAvaloniaUI" Version="2.5.0" />
<PackageReference Include="VC-LTL" Version="5.2.1" />
<PackageReference Include="Velopack" Version="0.0.1298" />
<PackageReference Include="ClosedXML" Version="0.105.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="10.0.3" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="10.0.3" />
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="10.0.3" />
<PackageReference Include="ScottPlot" Version="5.0.55" />
<PackageReference Include="ScottPlot.Avalonia" Version="5.0.55" />
<PackageReference Include="DialogHost.Avalonia" Version="0.10.4" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\ModerBox.Common\ModerBox.Common.csproj" />
<ProjectReference Include="..\ModerBox.Comtrade.FilterWaveform\ModerBox.Comtrade.FilterWaveform.csproj" />
<ProjectReference Include="..\ModerBox.Comtrade.Harmonic\ModerBox.Comtrade.Harmonic.csproj" />
<ProjectReference Include="..\ModerBox.Comtrade.PeriodicWork\ModerBox.Comtrade.PeriodicWork.csproj" />
<ProjectReference Include="..\ModerBox.Comtrade.CurrentDifferenceAnalysis\ModerBox.Comtrade.CurrentDifferenceAnalysis.csproj" />
<ProjectReference Include="..\ModerBox.Comtrade.Analysis.CurrentDifference\ModerBox.Comtrade.Analysis.CurrentDifference.csproj" />
<ProjectReference Include="..\ModerBox.QuestionBank\ModerBox.QuestionBank.csproj" />
<ProjectReference Include="..\ModerBox.Comtrade.Export\ModerBox.Comtrade.Export.csproj" />
<ProjectReference Include="..\ModerBox.CableRouting\ModerBox.CableRouting.csproj" />
<ProjectReference Include="..\ModerBox.VideoAnalysis\ModerBox.VideoAnalysis.csproj" />
<ProjectReference Include="..\ModerBox.ContributionCalculation\ModerBox.ContributionCalculation.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="..\ModerBox.Comtrade.PeriodicWork\PeriodicWorkData.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<Link>PeriodicWorkData.json</Link>
</None>
</ItemGroup>
<ItemGroup>
<Compile Update="Views\UserControls\FilterWaveformSwitchInterval.axaml.cs">
<DependentUpon>FilterWaveformSwitchInterval.axaml</DependentUpon>
</Compile>
</ItemGroup>
</Project>