Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ No precise mouse movement required, no bloat, no extensions, just a simple launc

**[Download Launchbar here](https://github.com/Mertsch/Launchbar/releases)**

![Launchbar in action](<Screenshot.png>)
![Launchbar in action](<Screenshot.jpg>)

### What do others say?
Check out these sites for a pretty accurate description of Launchbar.
Expand Down
Binary file added Screenshot.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed Screenshot.png
Binary file not shown.
14 changes: 7 additions & 7 deletions Source/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,11 @@
<Import Condition="$(IsProdProjectName)" Project="Product.props"/>

<!-- #region Workaround for https://github.com/dotnet/roslyn/issues/41640 -->
<!-- We skip documentation for publishing (dotnet publish), as we do not need it in the final bits. -->
<PropertyGroup>
<!-- https://learn.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#generatedocumentationfile -->
<GenerateDocumentationFile Condition="'$(_IsPublishing)' != 'yes'" >true</GenerateDocumentationFile>
<!-- CS1591: Missing XML comment for publicly visible type or member -->
<NoWarn>$(NoWarn);CS1591</NoWarn>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<!-- We skip documentation for publishing, as we do not need it in the final bits. - https://learn.microsoft.com/en-us/dotnet/core/project-sdk/msbuild-props#publishdocumentationfiles -->
<PublishDocumentationFiles>false</PublishDocumentationFiles>
</PropertyGroup>
<!-- #endregion -->

Expand All @@ -45,11 +44,12 @@
<!-- #region - 🚀 Production code projects 🚀 -->
<When Condition="$(IsProdProjectName)">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<TargetFramework>net10.0</TargetFramework>

<IsPublishable>false</IsPublishable>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
</PropertyGroup>

<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<DebugType>embedded</DebugType>
</PropertyGroup>
Expand All @@ -69,7 +69,7 @@
<!-- #region - 🧪 Test projects 🧪 -->
<When Condition="$(IsTestProjectName)">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<TargetFramework>net10.0</TargetFramework>

<IsPackable>false</IsPackable>
<IsPublishable>false</IsPublishable>
Expand Down Expand Up @@ -97,7 +97,7 @@
<!-- #region - 📦 Setup projects 📦 -->
<When Condition="$(IsSetupProjectName)">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<TargetFramework>net10.0</TargetFramework>

<IsPublishable>false</IsPublishable>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
Expand Down
1 change: 1 addition & 0 deletions Source/Launchbar.slnx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<File Path="../.editorconfig" />
<File Path="../.github/workflows/Launchbar-CI.yaml" />
<File Path="../CHANGELOG.md" />
<File Path="../README.md" />
<File Path="Directory.Build.props" />
<File Path="Directory.Packages.props" />
<File Path="global.json" />
Expand Down