-
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.
Merge pull request #1 from hlaueriksson/bump
Bump
- Loading branch information
Showing
9 changed files
with
45 additions
and
29 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
6 changes: 3 additions & 3 deletions
6
...unity.PowerToys.Run.Plugin.Abstractions/Community.PowerToys.Run.Plugin.Abstractions.props
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,9 +1,9 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<ItemGroup Condition="'$(Platform)' == 'ARM64'"> | ||
<Reference Include="Community.PowerToys.Run.Plugin.Abstractions.dll" HintPath="$(MSBuildThisFileDirectory)..\lib\net8.0-windows7.0\ARM64\Community.PowerToys.Run.Plugin.Abstractions.dll" /> | ||
<Reference Include="Community.PowerToys.Run.Plugin.Abstractions.dll" HintPath="$(MSBuildThisFileDirectory)..\runtimes\win-arm64\lib\net9.0\Community.PowerToys.Run.Plugin.Abstractions.dll" /> | ||
</ItemGroup> | ||
<ItemGroup Condition="'$(Platform)' == 'x64'"> | ||
<Reference Include="Community.PowerToys.Run.Plugin.Abstractions.dll" HintPath="$(MSBuildThisFileDirectory)..\lib\net8.0-windows7.0\x64\Community.PowerToys.Run.Plugin.Abstractions.dll" /> | ||
<ItemGroup Condition="'$(Platform)' == 'x64' or '$(Platform)' == 'AnyCPU'"> | ||
<Reference Include="Community.PowerToys.Run.Plugin.Abstractions.dll" HintPath="$(MSBuildThisFileDirectory)..\runtimes\win-x64\lib\net9.0\Community.PowerToys.Run.Plugin.Abstractions.dll" /> | ||
</ItemGroup> | ||
</Project> |
11 changes: 11 additions & 0 deletions
11
...ity.PowerToys.Run.Plugin.Abstractions/Community.PowerToys.Run.Plugin.Abstractions.targets
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,11 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<ItemGroup> | ||
<Libs Include="$(MSBuildThisFileDirectory)..\runtimes\win-arm64\lib\net9.0\*.*" Condition="'$(Platform)' == 'ARM64'" /> | ||
<Libs Include="$(MSBuildThisFileDirectory)..\runtimes\win-x64\lib\net9.0\*.*" Condition="'$(Platform)' == 'x64' or '$(Platform)' == 'AnyCPU'" /> | ||
<ContentWithTargetPath Include="@(Libs)"> | ||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
<TargetPath>%(Filename)%(Extension)</TargetPath> | ||
</ContentWithTargetPath> | ||
</ItemGroup> | ||
</Project> |
23 changes: 11 additions & 12 deletions
23
...ys.Run.Plugin.Abstractions.Tests/Community.PowerToys.Run.Plugin.Abstractions.Tests.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
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