-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Expand file tree
/
Copy pathGitLab.UI.Avalonia.csproj
More file actions
31 lines (27 loc) · 998 Bytes
/
GitLab.UI.Avalonia.csproj
File metadata and controls
31 lines (27 loc) · 998 Bytes
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<RuntimeIdentifiers>osx-x64;linux-x64;osx-arm64</RuntimeIdentifiers>
<RootNamespace>GitLab.UI</RootNamespace>
<AssemblyName>GitLab.UI</AssemblyName>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\GitLab.UI\GitLab.UI.csproj" />
<ProjectReference Include="..\Core.UI.Avalonia\Core.UI.Avalonia.csproj" />
</ItemGroup>
<ItemGroup>
<Compile Update="Windows\CredentialsWindow.axaml.cs">
<DependentUpon>CredentialsWindow.axaml</DependentUpon>
<SubType>Code</SubType>
</Compile>
<Compile Update="Windows\TesterWindow.axaml.cs">
<DependentUpon>Tester.axaml</DependentUpon>
<SubType>Code</SubType>
</Compile>
<Compile Update="Controls\TesterWindow.axaml.cs">
<DependentUpon>TesterWindow.axaml</DependentUpon>
<SubType>Code</SubType>
</Compile>
</ItemGroup>
</Project>