-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathXTMF2.GUI.csproj
More file actions
55 lines (50 loc) · 2.31 KB
/
Copy pathXTMF2.GUI.csproj
File metadata and controls
55 lines (50 loc) · 2.31 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
<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>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
<OutputPath>..\..\..\XTMF2-Dev\</OutputPath>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Avalonia" Version="11.3.14" />
<PackageReference Include="Avalonia.Desktop" Version="11.3.14" />
<PackageReference Include="Avalonia.Themes.Fluent" Version="11.3.14" />
<PackageReference Include="Avalonia.Fonts.Inter" Version="11.3.14" />
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.4.1-build.4" />
<PackageReference Include="Dock.Avalonia" Version="11.3.11.22" />
<PackageReference Include="Dock.Model.Avalonia" Version="11.3.11.22" />
<PackageReference Include="Dock.Avalonia.Themes.Fluent" Version="11.3.11.22" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Resources\Strings.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Strings.Designer.cs</LastGenOutput>
</EmbeddedResource>
<EmbeddedResource Update="Resources\Strings.fr.resx">
<DependentUpon>Strings.resx</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Update="Resources\Strings.es.resx">
<DependentUpon>Strings.resx</DependentUpon>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<AvaloniaResource Include="Resources\XTMF_icon.png"/>
</ItemGroup>
<ItemGroup>
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
<_Parameter1>XTMF2.GUI.Tests</_Parameter1>
</AssemblyAttribute>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\XTMF2\XTMF2.csproj" />
<ProjectReference Include="..\XTMF2.Interfaces\XTMF2.Interfaces.csproj" />
<ProjectReference Include="..\XTMF2.Client\XTMF2.RunServer.csproj" />
<ProjectReference Include="..\XTMF2.Run\XTMF2.Run.csproj" />
</ItemGroup>
</Project>