forked from microsoft/PowerToys
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Mouse Jump] - fixing shimmer in preview image size - microsoft#25482
- Loading branch information
1 parent
4782f1b
commit 437ef32
Showing
8 changed files
with
92 additions
and
94 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
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
118 changes: 59 additions & 59 deletions
118
src/settings-ui/Settings.UI.Library/Settings.UI.Library.csproj
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,63 +1,63 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<Import Project="..\..\Version.props" /> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>net8.0-windows</TargetFrameworks> | ||
<RuntimeIdentifiers>win-x64;win-arm64</RuntimeIdentifiers> | ||
<TargetFramework>net8.0-windows</TargetFramework> | ||
<Version>$(Version).0</Version> | ||
<Authors>Microsoft Corporation</Authors> | ||
<Product>PowerToys</Product> | ||
<Description>PowerToys Settings UI Library</Description> | ||
<AssemblyName>PowerToys.Settings.UI.Lib</AssemblyName> | ||
<SelfContained>true</SelfContained> | ||
</PropertyGroup> | ||
|
||
<!-- SelfContained=true requires RuntimeIdentifier to be set --> | ||
<PropertyGroup Condition="'$(Platform)'=='x64'"> | ||
<RuntimeIdentifier>win-x64</RuntimeIdentifier> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Platform)'=='ARM64'"> | ||
<RuntimeIdentifier>win-arm64</RuntimeIdentifier> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)'=='Debug'"> | ||
<DefineConstants>DEBUG;TRACE</DefineConstants> | ||
<DebugType>full</DebugType> | ||
<DebugSymbols>true</DebugSymbols> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<None Include="backup_restore_settings.json"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
</None> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="System.IO.Abstractions" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\..\common\interop\PowerToys.Interop.vcxproj" /> | ||
<ProjectReference Include="..\..\common\ManagedCommon\ManagedCommon.csproj" /> | ||
<ProjectReference Include="..\..\common\ManagedTelemetry\Telemetry\ManagedTelemetry.csproj" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Compile Update="Resources\Resources.Designer.cs"> | ||
<DependentUpon>Resources.resx</DependentUpon> | ||
<DesignTime>True</DesignTime> | ||
<AutoGen>True</AutoGen> | ||
</Compile> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<EmbeddedResource Update="Resources\Resources.resx"> | ||
<SubType>Designer</SubType> | ||
<LastGenOutput>Resources.Designer.cs</LastGenOutput> | ||
<Generator>PublicResXFileCodeGenerator</Generator> | ||
</EmbeddedResource> | ||
</ItemGroup> | ||
<Import Project="..\..\Version.props" /> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>net8.0-windows</TargetFrameworks> | ||
<RuntimeIdentifiers>win-x64;win-arm64</RuntimeIdentifiers> | ||
<TargetFramework>net8.0-windows</TargetFramework> | ||
<Version>$(Version).0</Version> | ||
<Authors>Microsoft Corporation</Authors> | ||
<Product>PowerToys</Product> | ||
<Description>PowerToys Settings UI Library</Description> | ||
<AssemblyName>PowerToys.Settings.UI.Lib</AssemblyName> | ||
<SelfContained>true</SelfContained> | ||
</PropertyGroup> | ||
|
||
<!-- SelfContained=true requires RuntimeIdentifier to be set --> | ||
<PropertyGroup Condition="'$(Platform)'=='x64'"> | ||
<RuntimeIdentifier>win-x64</RuntimeIdentifier> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Platform)'=='ARM64'"> | ||
<RuntimeIdentifier>win-arm64</RuntimeIdentifier> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)'=='Debug'"> | ||
<DefineConstants>DEBUG;TRACE</DefineConstants> | ||
<DebugType>full</DebugType> | ||
<DebugSymbols>true</DebugSymbols> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<None Include="backup_restore_settings.json"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
</None> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="System.IO.Abstractions" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\..\common\interop\PowerToys.Interop.vcxproj" /> | ||
<ProjectReference Include="..\..\common\ManagedCommon\ManagedCommon.csproj" /> | ||
<ProjectReference Include="..\..\common\ManagedTelemetry\Telemetry\ManagedTelemetry.csproj" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Compile Update="Resources\Resources.Designer.cs"> | ||
<DependentUpon>Resources.resx</DependentUpon> | ||
<DesignTime>True</DesignTime> | ||
<AutoGen>True</AutoGen> | ||
</Compile> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<EmbeddedResource Update="Resources\Resources.resx"> | ||
<SubType>Designer</SubType> | ||
<LastGenOutput>Resources.Designer.cs</LastGenOutput> | ||
<Generator>PublicResXFileCodeGenerator</Generator> | ||
</EmbeddedResource> | ||
</ItemGroup> | ||
|
||
</Project> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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