Skip to content

Commit

Permalink
Added log message event.
Browse files Browse the repository at this point in the history
Added silent mode to prevent dialogs that require user interaction.
  • Loading branch information
jessek1 committed Sep 3, 2019
1 parent a6ee768 commit c56b95e
Show file tree
Hide file tree
Showing 5 changed files with 560 additions and 309 deletions.
13 changes: 10 additions & 3 deletions AutoUpdater.NET/AutoUpdater.NET.csproj
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
Expand Down Expand Up @@ -36,34 +36,41 @@
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
<OutputPath>bin\Debug\net20</OutputPath>
<DocumentationFile>bin\Debug\net20\AutoUpdater.NET.XML</DocumentationFile>
<DefineConstants>TRACE;DEBUG</DefineConstants>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
<OutputPath>build\lib\net20</OutputPath>
<DocumentationFile>build\lib\net20\AutoUpdater.NET.XML</DocumentationFile>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug-NET35' ">
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
<OutputPath>bin\Debug\net35</OutputPath>
<DocumentationFile>bin\Debug\net35\AutoUpdater.NET.XML</DocumentationFile>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release-NET35' ">
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
<OutputPath>build\lib\net35</OutputPath>
<DocumentationFile>build\lib\net35\AutoUpdater.NET.XML</DocumentationFile>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug-NET40' ">
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<OutputPath>bin\Debug\net40</OutputPath>
<DocumentationFile>bin\Debug\net40\AutoUpdater.NET.XML</DocumentationFile>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release-NET40' ">
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
<OutputPath>build\lib\net40</OutputPath>
<DocumentationFile>build\lib\net40\AutoUpdater.NET.XML</DocumentationFile>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup>
<SignAssembly>true</SignAssembly>
<SignAssembly>false</SignAssembly>
</PropertyGroup>
<PropertyGroup>
<AssemblyOriginatorKeyFile>AutoUpdater.NET.snk</AssemblyOriginatorKeyFile>
Expand Down
Loading

0 comments on commit c56b95e

Please sign in to comment.