-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMacroLinx.Maui.csproj
More file actions
53 lines (43 loc) · 2.11 KB
/
Copy pathMacroLinx.Maui.csproj
File metadata and controls
53 lines (43 loc) · 2.11 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0-windows10.0.19041.0</TargetFramework>
<OutputType>WinExe</OutputType>
<RootNamespace>MacroLinx.Maui</RootNamespace>
<UseMaui>true</UseMaui>
<SingleProject>true</SingleProject>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<ApplicationTitle>MacroLinx</ApplicationTitle>
<ApplicationId>com.diogo.macrolinx</ApplicationId>
<ApplicationDisplayVersion>1.0</ApplicationDisplayVersion>
<ApplicationVersion>1</ApplicationVersion>
<WindowsPackageType>None</WindowsPackageType>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<SelfContained>true</SelfContained>
<WindowsAppSDKSelfContained>true</WindowsAppSDKSelfContained>
<ApplicationIcon>macrolinx.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<MauiIcon Include="Resources\AppIcon\macrolinx.svg" />
<MauiImage Include="Resources\Images\*" />
<MauiSplashScreen Include="Resources\Splash\splash.svg" Color="#4C1D95" />
<SupportedPlatform Include="windows10.0.17763.0" />
</ItemGroup>
<ItemGroup>
<Content Include="macrolinx.ico" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\MacroLinx.Application\MacroLinx.Application.csproj" />
<ProjectReference Include="..\MacroLinx.Infrastructure\MacroLinx.Infrastructure.csproj" />
<ProjectReference Include="..\MacroLinx.Domain\MacroLinx.Domain.csproj" />
<ProjectReference Include="..\MacroLinx.Infrastructure.Windows\MacroLinx.Infrastructure.Windows.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="CommunityToolkit.Maui" Version="9.1.1" />
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.4.2" />
<PackageReference Include="H.NotifyIcon.Maui" Version="2.0.129" />
<PackageReference Include="Microsoft.Maui.Controls" Version="8.0.100" />
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="8.0.1" Condition="'$(Configuration)' == 'Debug'" />
<PackageReference Include="OpenAI" Version="2.9.1" />
</ItemGroup>
</Project>