-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathWorkActivityTracker.csproj
More file actions
65 lines (52 loc) · 2.5 KB
/
WorkActivityTracker.csproj
File metadata and controls
65 lines (52 loc) · 2.5 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.Razor">
<PropertyGroup>
<TargetFramework>net10.0-windows10.0.19041.0</TargetFramework>
<OutputType>WinExe</OutputType>
<RootNamespace>WorkActivityTracker</RootNamespace>
<UseMaui>true</UseMaui>
<SingleProject>true</SingleProject>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<EnableDefaultCssItems>false</EnableDefaultCssItems>
<!-- Windows Package Configuration -->
<WindowsPackageType>None</WindowsPackageType>
<!-- Entry Point -->
<EnableDefaultMauiItems>true</EnableDefaultMauiItems>
<ApplicationTitle>Work Activity Tracker</ApplicationTitle>
<ApplicationId>com.tuaazienda.workactivitytracker</ApplicationId>
<ApplicationDisplayVersion>1.0</ApplicationDisplayVersion>
<ApplicationVersion>1</ApplicationVersion>
<SupportedOSPlatformVersion>10.0.17763.0</SupportedOSPlatformVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Maui.Controls" Version="10.0.50" />
<PackageReference Include="Microsoft.Maui.Controls.Compatibility" Version="10.0.50" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebView.Maui" Version="10.0.50" />
<!-- Community Toolkit per FolderPicker -->
<PackageReference Include="CommunityToolkit.Maui" Version="14.0.1" />
<!-- Configuration -->
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="10.0.5" />
<!-- ClosedXML per esportazione XLSX -->
<PackageReference Include="ClosedXML" Version="0.105.0" />
<!-- Entity Framework Core SQL Server -->
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="10.0.5" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="10.0.5" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="10.0.5">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<!-- File di configurazione copiato nell'output -->
<ItemGroup>
<Content Update="appsettings.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<!-- Script SQL copiati nell'output -->
<ItemGroup>
<Content Include="Database\**\*">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<Link>Database\%(RecursiveDir)%(Filename)%(Extension)</Link>
</Content>
</ItemGroup>
</Project>