Skip to content

Commit 6e357b4

Browse files
committed
1.9.9
[New] - Auto update: You can configure AutoActions to update automatically, if a new release has been published on GitHub
1 parent c1da05b commit 6e357b4

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+904
-202549
lines changed

Build.ps1

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -9,23 +9,13 @@ function buildVS
99
[String] $version,
1010

1111
[parameter(Mandatory=$false)]
12-
[bool] $nuget = $true,
12+
[bool] $nuget = $true
1313

14-
[parameter(Mandatory=$false)]
15-
[bool] $clean = $true
1614
)
1715
process
1816
{
1917
$msBuildExe = 'C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\MSBuild\Current\Bin\msbuild.exe'
2018

21-
if ($clean) {
22-
Write-Host "Cleaning x64 $($path)" -foregroundcolor green
23-
{Get-ChildItem -Path .\Source\Release_x64 -Include * | remove-Item -recurse -force}
24-
Write-Host "Cleaning x86 $($path)" -foregroundcolor green
25-
{Get-ChildItem -Path .\Source\Release_x86 -Include * | remove-Item -recurse -force}
26-
27-
}
28-
2919
Write-Host "Building x64 $($path)" -foregroundcolor green
3020
& "$($msBuildExe)" "$($path)" /t:Build /m /property:Configuration=Release /property:Platform=x64
3121
Write-Host "Building x86 $($path)" -foregroundcolor green

Photoshop/SplashScreen.png

23.3 KB
Loading

Source/AutoActions.Audio/AutoActions.Audio.csproj

Lines changed: 28 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,22 +13,41 @@
1313
<FileAlignment>512</FileAlignment>
1414
<Deterministic>true</Deterministic>
1515
</PropertyGroup>
16-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
16+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
1717
<DebugSymbols>true</DebugSymbols>
18-
<DebugType>full</DebugType>
19-
<Optimize>false</Optimize>
20-
<OutputPath>bin\Debug\</OutputPath>
18+
<OutputPath>bin\Debug_x64\</OutputPath>
2119
<DefineConstants>DEBUG;TRACE</DefineConstants>
20+
<DebugType>full</DebugType>
21+
<PlatformTarget>x64</PlatformTarget>
22+
<LangVersion>7.3</LangVersion>
2223
<ErrorReport>prompt</ErrorReport>
23-
<WarningLevel>4</WarningLevel>
2424
</PropertyGroup>
25-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
26-
<DebugType>pdbonly</DebugType>
25+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
26+
<OutputPath>bin\Release_x64\</OutputPath>
27+
<DefineConstants>TRACE</DefineConstants>
2728
<Optimize>true</Optimize>
28-
<OutputPath>bin\Release\</OutputPath>
29+
<DebugType>pdbonly</DebugType>
30+
<PlatformTarget>x64</PlatformTarget>
31+
<LangVersion>7.3</LangVersion>
32+
<ErrorReport>prompt</ErrorReport>
33+
</PropertyGroup>
34+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
35+
<DebugSymbols>true</DebugSymbols>
36+
<OutputPath>bin\Debug_x86\</OutputPath>
37+
<DefineConstants>DEBUG;TRACE</DefineConstants>
38+
<DebugType>full</DebugType>
39+
<PlatformTarget>x86</PlatformTarget>
40+
<LangVersion>7.3</LangVersion>
41+
<ErrorReport>prompt</ErrorReport>
42+
</PropertyGroup>
43+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
44+
<OutputPath>bin\Release_x86\</OutputPath>
2945
<DefineConstants>TRACE</DefineConstants>
46+
<Optimize>true</Optimize>
47+
<DebugType>pdbonly</DebugType>
48+
<PlatformTarget>x86</PlatformTarget>
49+
<LangVersion>7.3</LangVersion>
3050
<ErrorReport>prompt</ErrorReport>
31-
<WarningLevel>4</WarningLevel>
3251
</PropertyGroup>
3352
<ItemGroup>
3453
<Reference Include="Microsoft.Win32.Registry, Version=4.1.3.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">

Source/AutoActions.Core/AutoActions.Core.csproj

Lines changed: 28 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,22 +13,41 @@
1313
<FileAlignment>512</FileAlignment>
1414
<Deterministic>true</Deterministic>
1515
</PropertyGroup>
16-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
16+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
1717
<DebugSymbols>true</DebugSymbols>
18-
<DebugType>full</DebugType>
19-
<Optimize>false</Optimize>
20-
<OutputPath>bin\Debug\</OutputPath>
18+
<OutputPath>bin\Debug_x64\</OutputPath>
2119
<DefineConstants>DEBUG;TRACE</DefineConstants>
20+
<DebugType>full</DebugType>
21+
<PlatformTarget>x64</PlatformTarget>
22+
<LangVersion>7.3</LangVersion>
2223
<ErrorReport>prompt</ErrorReport>
23-
<WarningLevel>4</WarningLevel>
2424
</PropertyGroup>
25-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
26-
<DebugType>pdbonly</DebugType>
25+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
26+
<OutputPath>bin\Release_x64\</OutputPath>
27+
<DefineConstants>TRACE</DefineConstants>
2728
<Optimize>true</Optimize>
28-
<OutputPath>bin\Release\</OutputPath>
29+
<DebugType>pdbonly</DebugType>
30+
<PlatformTarget>x64</PlatformTarget>
31+
<LangVersion>7.3</LangVersion>
32+
<ErrorReport>prompt</ErrorReport>
33+
</PropertyGroup>
34+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
35+
<DebugSymbols>true</DebugSymbols>
36+
<OutputPath>bin\Debug_x86\</OutputPath>
37+
<DefineConstants>DEBUG;TRACE</DefineConstants>
38+
<DebugType>full</DebugType>
39+
<PlatformTarget>x86</PlatformTarget>
40+
<LangVersion>7.3</LangVersion>
41+
<ErrorReport>prompt</ErrorReport>
42+
</PropertyGroup>
43+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
44+
<OutputPath>bin\Release_x86\</OutputPath>
2945
<DefineConstants>TRACE</DefineConstants>
46+
<Optimize>true</Optimize>
47+
<DebugType>pdbonly</DebugType>
48+
<PlatformTarget>x86</PlatformTarget>
49+
<LangVersion>7.3</LangVersion>
3050
<ErrorReport>prompt</ErrorReport>
31-
<WarningLevel>4</WarningLevel>
3251
</PropertyGroup>
3352
<ItemGroup>
3453
<Reference Include="CodectoryCore.Logging">

Source/AutoActions.Displays/AutoActions.Displays.csproj

Lines changed: 32 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3-
<Import Project="..\packages\Costura.Fody.5.7.0\build\Costura.Fody.props" Condition="Exists('..\packages\Costura.Fody.5.7.0\build\Costura.Fody.props')" />
43
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
54
<PropertyGroup>
65
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
@@ -16,22 +15,41 @@
1615
<NuGetPackageImportStamp>
1716
</NuGetPackageImportStamp>
1817
</PropertyGroup>
19-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
18+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
2019
<DebugSymbols>true</DebugSymbols>
21-
<DebugType>full</DebugType>
22-
<Optimize>false</Optimize>
23-
<OutputPath>bin\Debug\</OutputPath>
20+
<OutputPath>bin\Debug_x64\</OutputPath>
2421
<DefineConstants>DEBUG;TRACE</DefineConstants>
22+
<DebugType>full</DebugType>
23+
<PlatformTarget>x64</PlatformTarget>
24+
<LangVersion>7.3</LangVersion>
2525
<ErrorReport>prompt</ErrorReport>
26-
<WarningLevel>4</WarningLevel>
2726
</PropertyGroup>
28-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
29-
<DebugType>pdbonly</DebugType>
27+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
28+
<OutputPath>bin\Release_x64\</OutputPath>
29+
<DefineConstants>TRACE</DefineConstants>
3030
<Optimize>true</Optimize>
31-
<OutputPath>bin\Release\</OutputPath>
31+
<DebugType>pdbonly</DebugType>
32+
<PlatformTarget>x64</PlatformTarget>
33+
<LangVersion>7.3</LangVersion>
34+
<ErrorReport>prompt</ErrorReport>
35+
</PropertyGroup>
36+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
37+
<DebugSymbols>true</DebugSymbols>
38+
<OutputPath>bin\Debug_x86\</OutputPath>
39+
<DefineConstants>DEBUG;TRACE</DefineConstants>
40+
<DebugType>full</DebugType>
41+
<PlatformTarget>x86</PlatformTarget>
42+
<LangVersion>7.3</LangVersion>
43+
<ErrorReport>prompt</ErrorReport>
44+
</PropertyGroup>
45+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
46+
<OutputPath>bin\Release_x86\</OutputPath>
3247
<DefineConstants>TRACE</DefineConstants>
48+
<Optimize>true</Optimize>
49+
<DebugType>pdbonly</DebugType>
50+
<PlatformTarget>x86</PlatformTarget>
51+
<LangVersion>7.3</LangVersion>
3352
<ErrorReport>prompt</ErrorReport>
34-
<WarningLevel>4</WarningLevel>
3553
</PropertyGroup>
3654
<ItemGroup>
3755
<Reference Include="CCDWrapper, Version=1.0.1.0, Culture=neutral, processorArchitecture=MSIL">
@@ -43,9 +61,6 @@
4361
<Reference Include="CodectoryCore.UI.Wpf">
4462
<HintPath>..\Externals\CodectoryCore.UI.Wpf.dll</HintPath>
4563
</Reference>
46-
<Reference Include="Costura, Version=5.7.0.0, Culture=neutral, processorArchitecture=MSIL">
47-
<HintPath>..\packages\Costura.Fody.5.7.0\lib\netstandard1.0\Costura.dll</HintPath>
48-
</Reference>
4964
<Reference Include="Microsoft.Win32.Primitives, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
5065
<HintPath>..\packages\Microsoft.Win32.Primitives.4.3.0\lib\net46\Microsoft.Win32.Primitives.dll</HintPath>
5166
<Private>True</Private>
@@ -232,26 +247,16 @@
232247
<LastGenOutput>Locale.Designer.cs</LastGenOutput>
233248
</EmbeddedResource>
234249
</ItemGroup>
235-
<ItemGroup>
236-
<EmbeddedResource Include="Costura64\HDRController.dll" />
237-
</ItemGroup>
238-
<ItemGroup>
239-
<EmbeddedResource Include="Costura32\HDRController.dll" />
240-
</ItemGroup>
241-
<ItemGroup>
242-
<Resource Include="FodyWeavers.xml" />
243-
</ItemGroup>
244250
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
245251
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
246252
<PropertyGroup>
247253
<ErrorText>Dieses Projekt verweist auf mindestens ein NuGet-Paket, das auf diesem Computer fehlt. Verwenden Sie die Wiederherstellung von NuGet-Paketen, um die fehlenden Dateien herunterzuladen. Weitere Informationen finden Sie unter "http://go.microsoft.com/fwlink/?LinkID=322105". Die fehlende Datei ist "{0}".</ErrorText>
248254
</PropertyGroup>
249-
<Error Condition="!Exists('..\packages\Costura.Fody.5.7.0\build\Costura.Fody.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Costura.Fody.5.7.0\build\Costura.Fody.props'))" />
250-
<Error Condition="!Exists('..\packages\Costura.Fody.5.7.0\build\Costura.Fody.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Costura.Fody.5.7.0\build\Costura.Fody.targets'))" />
251255
<Error Condition="!Exists('..\packages\NETStandard.Library.2.0.3\build\netstandard2.0\NETStandard.Library.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\NETStandard.Library.2.0.3\build\netstandard2.0\NETStandard.Library.targets'))" />
252-
<Error Condition="!Exists('..\packages\Fody.6.6.0\build\Fody.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Fody.6.6.0\build\Fody.targets'))" />
253256
</Target>
254-
<Import Project="..\packages\Costura.Fody.5.7.0\build\Costura.Fody.targets" Condition="Exists('..\packages\Costura.Fody.5.7.0\build\Costura.Fody.targets')" />
255257
<Import Project="..\packages\NETStandard.Library.2.0.3\build\netstandard2.0\NETStandard.Library.targets" Condition="Exists('..\packages\NETStandard.Library.2.0.3\build\netstandard2.0\NETStandard.Library.targets')" />
256-
<Import Project="..\packages\Fody.6.6.0\build\Fody.targets" Condition="Exists('..\packages\Fody.6.6.0\build\Fody.targets')" />
258+
<PropertyGroup>
259+
<PreBuildEvent>copy /Y "$(SolutionDir)Externals\$(PlatformName)\HDRController.dll" "$(TargetDir)HDRController.dll"
260+
</PreBuildEvent>
261+
</PropertyGroup>
257262
</Project>
-81 KB
Binary file not shown.
-109 KB
Binary file not shown.

Source/AutoActions.Displays/FodyWeavers.xml

Lines changed: 0 additions & 10 deletions
This file was deleted.

Source/AutoActions.Displays/packages.config

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
33
<package id="CCDWrapper" version="1.0.1" targetFramework="net472" />
4-
<package id="Costura.Fody" version="5.7.0" targetFramework="net472" developmentDependency="true" />
5-
<package id="Fody" version="6.6.0" targetFramework="net472" developmentDependency="true" />
64
<package id="Microsoft.NETCore.Platforms" version="1.1.0" targetFramework="net472" />
75
<package id="Microsoft.Win32.Primitives" version="4.3.0" targetFramework="net472" />
86
<package id="NETStandard.Library" version="2.0.3" targetFramework="net472" />

Source/AutoActions.ProjectResources/AutoActions.ProjectResources.csproj

Lines changed: 28 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,22 +13,41 @@
1313
<FileAlignment>512</FileAlignment>
1414
<Deterministic>true</Deterministic>
1515
</PropertyGroup>
16-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
16+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
1717
<DebugSymbols>true</DebugSymbols>
18-
<DebugType>full</DebugType>
19-
<Optimize>false</Optimize>
20-
<OutputPath>bin\Debug\</OutputPath>
18+
<OutputPath>bin\Debug_x86\</OutputPath>
2119
<DefineConstants>DEBUG;TRACE</DefineConstants>
20+
<DebugType>full</DebugType>
21+
<PlatformTarget>x64</PlatformTarget>
22+
<LangVersion>7.3</LangVersion>
2223
<ErrorReport>prompt</ErrorReport>
23-
<WarningLevel>4</WarningLevel>
2424
</PropertyGroup>
25-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
26-
<DebugType>pdbonly</DebugType>
25+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
26+
<OutputPath>bin\Release_x64\</OutputPath>
27+
<DefineConstants>TRACE</DefineConstants>
2728
<Optimize>true</Optimize>
28-
<OutputPath>bin\Release\</OutputPath>
29+
<DebugType>pdbonly</DebugType>
30+
<PlatformTarget>x64</PlatformTarget>
31+
<LangVersion>7.3</LangVersion>
32+
<ErrorReport>prompt</ErrorReport>
33+
</PropertyGroup>
34+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
35+
<DebugSymbols>true</DebugSymbols>
36+
<OutputPath>bin\Debug_x86\</OutputPath>
37+
<DefineConstants>DEBUG;TRACE</DefineConstants>
38+
<DebugType>full</DebugType>
39+
<PlatformTarget>x86</PlatformTarget>
40+
<LangVersion>7.3</LangVersion>
41+
<ErrorReport>prompt</ErrorReport>
42+
</PropertyGroup>
43+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
44+
<OutputPath>bin\Release_x64\</OutputPath>
2945
<DefineConstants>TRACE</DefineConstants>
46+
<Optimize>true</Optimize>
47+
<DebugType>pdbonly</DebugType>
48+
<PlatformTarget>x86</PlatformTarget>
49+
<LangVersion>7.3</LangVersion>
3050
<ErrorReport>prompt</ErrorReport>
31-
<WarningLevel>4</WarningLevel>
3251
</PropertyGroup>
3352
<ItemGroup>
3453
<Reference Include="System" />

0 commit comments

Comments
 (0)