-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathItimHebrewCalendar.csproj
More file actions
67 lines (58 loc) · 2.86 KB
/
Copy pathItimHebrewCalendar.csproj
File metadata and controls
67 lines (58 loc) · 2.86 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows10.0.19041.0</TargetFramework>
<TargetPlatformMinVersion>10.0.17763.0</TargetPlatformMinVersion>
<RootNamespace>ItimHebrewCalendar</RootNamespace>
<ApplicationManifest>app.manifest</ApplicationManifest>
<Platforms>x64;ARM64</Platforms>
<RuntimeIdentifiers>win-x64;win-arm64</RuntimeIdentifiers>
<PublishProfile>win-$(Platform).pubxml</PublishProfile>
<UseWinUI>true</UseWinUI>
<Nullable>enable</Nullable>
<EnableMsixTooling>false</EnableMsixTooling>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<!-- Unpackaged Win32-style deployment. -->
<WindowsPackageType>None</WindowsPackageType>
<WindowsAppSDKSelfContained>false</WindowsAppSDKSelfContained>
<AssemblyName>ItimHebrewCalendar</AssemblyName>
<Version>1.8.0</Version>
<ApplicationIcon>Assets\AppIcon.ico</ApplicationIcon>
<AssemblyTitle>ItimHebrewCalendar</AssemblyTitle>
<Product>ItimHebrewCalendar</Product>
<Description>לוח שנה עברי עם זמני היום בהלכה</Description>
<Copyright>Copyright © 2026</Copyright>
<!-- Disables WinUI's auto-generated Main so Program.cs is used as the entry point. -->
<DefineConstants>$(DefineConstants);DISABLE_XAML_GENERATED_MAIN</DefineConstants>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.WindowsAppSDK" Version="1.7.250606001" />
<PackageReference Include="Microsoft.Windows.SDK.BuildTools" Version="10.0.26100.1742" />
<PackageReference Include="H.NotifyIcon.WinUI" Version="2.2.0" />
<PackageReference Include="Zmanim" Version="1.5.0" />
</ItemGroup>
<ItemGroup>
<Content Include="Assets\AppIcon.ico">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Assets\AppIcon.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Assets\abaye.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<!-- Native hebcal-go DLL, built from the Go source under HebcalNative/lib.
Picks the right architecture-specific build per RuntimeIdentifier and
renames it to HebcalNative.dll in the output. -->
<Content Include="Resources\HebcalNative.dll"
Condition="'$(RuntimeIdentifier)' != 'win-arm64' And Exists('Resources\HebcalNative.dll')">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<Link>HebcalNative.dll</Link>
</Content>
<Content Include="Resources\HebcalNative.arm64.dll"
Condition="'$(RuntimeIdentifier)' == 'win-arm64' And Exists('Resources\HebcalNative.arm64.dll')">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<Link>HebcalNative.dll</Link>
</Content>
</ItemGroup>
</Project>