-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
655 changed files
with
5,745 additions
and
1,660 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,108 +1,50 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net8.0-windows10.0.22621.0</TargetFramework> | ||
<OutputType>WinExe</OutputType> | ||
<AssemblyName>FluentHub</AssemblyName> | ||
<DefaultLanguage>en-US</DefaultLanguage> | ||
<AppxDefaultResourceQualifiers>Language=en-US;ja-JP</AppxDefaultResourceQualifiers> | ||
<TargetPlatformMinVersion>10.0.19041.0</TargetPlatformMinVersion> | ||
<GenerateAppInstallerFile>False</GenerateAppInstallerFile> | ||
<AppxPackageSigningTimestampDigestAlgorithm>SHA256</AppxPackageSigningTimestampDigestAlgorithm> | ||
<AppxAutoIncrementPackageRevision>False</AppxAutoIncrementPackageRevision> | ||
<GenerateTestArtifacts>False</GenerateTestArtifacts> | ||
<AppxBundle>Always</AppxBundle> | ||
<DisableXbfLineInfo>False</DisableXbfLineInfo> | ||
<AppxBundlePlatforms>x86|x64|arm64</AppxBundlePlatforms> | ||
<HoursBetweenUpdateChecks>0</HoursBetweenUpdateChecks> | ||
<LangVersion>latest</LangVersion> | ||
<Nullable>enable</Nullable> | ||
<NoWin32Manifest>True</NoWin32Manifest> | ||
<Platforms>x86;x64;arm64</Platforms> | ||
<RuntimeIdentifiers>win10-x86;win10-x64;win10-arm64</RuntimeIdentifiers> | ||
<UseWinUI>true</UseWinUI> | ||
<ApplicationManifest>app.manifest</ApplicationManifest> | ||
<BuiltInComInteropSupport>true</BuiltInComInteropSupport> | ||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> | ||
<Configurations>Debug;Release;Sideload</Configurations> | ||
<TieredCompilation>true</TieredCompilation> | ||
<TieredPgo>true</TieredPgo> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'"> | ||
<DefineConstants>TRACE;DEBUG;NETFX_CORE;DISABLE_XAML_GENERATED_MAIN</DefineConstants> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'"> | ||
<DefineConstants>TRACE;NETFX_CORE;DISABLE_XAML_GENERATED_MAIN</DefineConstants> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Sideload|x86'"> | ||
<DefineConstants>TRACE;NETFX_CORE;DISABLE_XAML_GENERATED_MAIN;SIDELOAD</DefineConstants> | ||
<Optimize>true</Optimize> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|arm64'"> | ||
<DefineConstants>TRACE;DEBUG;NETFX_CORE;DISABLE_XAML_GENERATED_MAIN</DefineConstants> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|arm64'"> | ||
<DefineConstants>TRACE;NETFX_CORE;DISABLE_XAML_GENERATED_MAIN</DefineConstants> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Sideload|arm64'"> | ||
<DefineConstants>TRACE;NETFX_CORE;DISABLE_XAML_GENERATED_MAIN;SIDELOAD</DefineConstants> | ||
<Optimize>true</Optimize> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'"> | ||
<DefineConstants>TRACE;DEBUG;NETFX_CORE;DISABLE_XAML_GENERATED_MAIN</DefineConstants> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'"> | ||
<DefineConstants>TRACE;NETFX_CORE;DISABLE_XAML_GENERATED_MAIN</DefineConstants> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Sideload|x64'"> | ||
<DefineConstants>TRACE;NETFX_CORE;DISABLE_XAML_GENERATED_MAIN;SIDELOAD</DefineConstants> | ||
<Optimize>true</Optimize> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<Content Include="Assets\**"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
</Content> | ||
<Content Include="Themes\*.xaml"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
<Generator>MSBuild:Compile</Generator> | ||
<SubType>Designer</SubType> | ||
</Content> | ||
<Content Include="ResourceDictionaries\*.xaml"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
<Generator>MSBuild:Compile</Generator> | ||
<SubType>Designer</SubType> | ||
</Content> | ||
<Content Include="AppCredentials.config"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
</Content> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.2.2" /> | ||
<PackageReference Include="CommunityToolkit.WinUI" Version="7.1.2" /> | ||
<PackageReference Include="CommunityToolkit.WinUI.Notifications" Version="7.1.2" /> | ||
<PackageReference Include="CommunityToolkit.WinUI.UI.Controls" Version="7.1.2" /> | ||
<PackageReference Include="Humanizer" Version="2.14.1" /> | ||
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.0" /> | ||
<PackageReference Include="Microsoft.Extensions.Hosting" Version="8.0.0" /> | ||
<PackageReference Include="Microsoft.Extensions.Logging" Version="8.0.0" /> | ||
<PackageReference Include="Microsoft.Graphics.Win2D" Version="1.2.0" /> | ||
<PackageReference Include="Microsoft.Windows.CsWinRT" Version="2.0.7" /> | ||
<PackageReference Include="Microsoft.Windows.SDK.BuildTools" Version="10.0.26100.1" /> | ||
<PackageReference Include="Microsoft.WindowsAppSDK" Version="1.5.240428000" /> | ||
<PackageReference Include="Microsoft.Xaml.Behaviors.WinUI.Managed" Version="2.0.9" /> | ||
<PackageReference Include="Octokit.GraphQL" Version="0.2.0-beta" /> | ||
<PackageReference Include="Serilog.Sinks.File" Version="5.0.0" /> | ||
<PackageReference Include="WinUIEx" Version="2.3.4" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\FluentHub.Core\FluentHub.Core.csproj" /> | ||
<ProjectReference Include="..\FluentHub.Octokit\FluentHub.Octokit.csproj" /> | ||
</ItemGroup> | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net8.0-windows10.0.22621.0</TargetFramework> | ||
<TargetPlatformMinVersion>10.0.19041.0</TargetPlatformMinVersion> | ||
<OutputType>WinExe</OutputType> | ||
<AssemblyName>FluentHub</AssemblyName> | ||
<ApplicationManifest>app.manifest</ApplicationManifest> | ||
<UseWinUI>true</UseWinUI> | ||
<BuiltInComInteropSupport>true</BuiltInComInteropSupport> | ||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> | ||
<Platforms>x86;x64;arm64</Platforms> | ||
<Configurations>Debug;Release;Sideload</Configurations> | ||
<RuntimeIdentifiers>win-x86;win-x64;win-arm64</RuntimeIdentifiers> | ||
<DefineConstants Condition="'$(Configuration)' == 'Debug'">TRACE;DEBUG;NETFX_CORE;DISABLE_XAML_GENERATED_MAIN</DefineConstants> | ||
<DefineConstants Condition="'$(Configuration)' != 'Debug'">TRACE;RELEASE;NETFX_CORE;DISABLE_XAML_GENERATED_MAIN</DefineConstants> | ||
<Optimize Condition="'$(Configuration)' != 'Debug'">true</Optimize> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<Content CopyToOutputDirectory="PreserveNewest" Include="Assets\**" /> | ||
<Content CopyToOutputDirectory="PreserveNewest" Include="AppCredentials.config" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.2.2" /> | ||
<PackageReference Include="CommunityToolkit.WinUI" Version="7.1.2" /> | ||
<PackageReference Include="CommunityToolkit.WinUI.Notifications" Version="7.1.2" /> | ||
<PackageReference Include="CommunityToolkit.WinUI.UI.Animations" Version="7.1.2" /> | ||
<PackageReference Include="CommunityToolkit.WinUI.UI.Controls" Version="7.1.2" /> | ||
<PackageReference Include="Humanizer" Version="2.14.1" /> | ||
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.0" /> | ||
<PackageReference Include="Microsoft.Extensions.Hosting" Version="8.0.0" /> | ||
<PackageReference Include="Microsoft.Extensions.Logging" Version="8.0.0" /> | ||
<PackageReference Include="Microsoft.Graphics.Win2D" Version="1.2.0" /> | ||
<PackageReference Include="Microsoft.Windows.CsWinRT" Version="2.0.7" /> | ||
<PackageReference Include="Microsoft.Windows.SDK.BuildTools" Version="10.0.26100.1" /> | ||
<PackageReference Include="Microsoft.WindowsAppSDK" Version="1.5.240428000" /> | ||
<PackageReference Include="Microsoft.Xaml.Behaviors.WinUI.Managed" Version="2.0.9" /> | ||
<PackageReference Include="Octokit.GraphQL" Version="0.2.0-beta" /> | ||
<PackageReference Include="Serilog.Sinks.File" Version="5.0.0" /> | ||
<PackageReference Include="WinUIEx" Version="2.3.4" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\FluentHub.Core\FluentHub.Core.csproj" /> | ||
<ProjectReference Include="..\FluentHub.Octokit\FluentHub.Octokit.csproj" /> | ||
</ItemGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<!-- Copyright (c) 2023 Files Community. Licensed under the MIT License. See the LICENSE. --> | ||
<ResourceDictionary | ||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | ||
xmlns:uc="using:FluentHub.App.UserControls"> | ||
|
||
<Style TargetType="uc:Shimmer"> | ||
<Setter Property="CornerRadius" Value="4" /> | ||
<Setter Property="Template"> | ||
<Setter.Value> | ||
<ControlTemplate TargetType="uc:Shimmer"> | ||
<Border | ||
x:Name="Shape" | ||
Background="{TemplateBinding Background}" | ||
CornerRadius="{TemplateBinding CornerRadius}" /> | ||
</ControlTemplate> | ||
</Setter.Value> | ||
</Setter> | ||
</Style> | ||
|
||
</ResourceDictionary> |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.