Skip to content

Commit

Permalink
disable topmost on autoupdater
Browse files Browse the repository at this point in the history
  • Loading branch information
PocketMiner82 committed Nov 20, 2023
1 parent 7548cd6 commit 49fbece
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,7 @@ ClientBin/
*.dbproj.schemaview
*.jfm
*.pfx
*.snk
*.publishsettings
orleans.codegen.cs

Expand Down
2 changes: 1 addition & 1 deletion AutoUpdater.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<item>
<version>1.0.0.0</version>
<version>1.0.0.1</version>
<url>https://github.com/PocketMiner82/pseudocode-ide/releases/latest/download/pseudocode-ide.zip</url>
<changelog>https://github.com/PocketMiner82/pseudocode-ide/releases</changelog>
<mandatory>false</mandatory>
Expand Down
4 changes: 2 additions & 2 deletions Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@
// Sie können alle Werte angeben oder Standardwerte für die Build- und Revisionsnummern verwenden,
// indem Sie "*" wie unten gezeigt eingeben:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyVersion("1.0.0.1")]
[assembly: AssemblyFileVersion("1.0.0.1")]
1 change: 0 additions & 1 deletion PseudocodeIDEForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,6 @@ private void PseudocodeIDEForm_Load(object sender, EventArgs e)
{
AutoUpdater.RunUpdateAsAdmin = false;
AutoUpdater.ClearAppDirectory = true;
AutoUpdater.TopMost = true;
AutoUpdater.SetOwner(this);
AutoUpdater.Start("https://raw.githubusercontent.com/PocketMiner82/pseudocode-ide/main/AutoUpdater.xml");
}
Expand Down
3 changes: 3 additions & 0 deletions pseudocodeIde.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,9 @@
<Analyzer Include="packages\Microsoft.CodeAnalysis.Analyzers.3.3.4\analyzers\dotnet\cs\Microsoft.CodeAnalysis.Analyzers.dll" />
<Analyzer Include="packages\Microsoft.CodeAnalysis.Analyzers.3.3.4\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CSharp.Analyzers.dll" />
</ItemGroup>
<ItemGroup>
<Content Include="AutoUpdater.xml" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Import Project="packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.4.1.0\build\net472\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.targets" Condition="Exists('packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.4.1.0\build\net472\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.targets')" />
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
Expand Down

0 comments on commit 49fbece

Please sign in to comment.