-
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 #17 from mcrossley/main
v2.0.1
- Loading branch information
Showing
6 changed files
with
387 additions
and
411 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,19 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<OutputType>Exe</OutputType> | ||
<AssemblyVersion>$(PackageVersion)</AssemblyVersion> | ||
<FileVersion>$(PackageVersion)</FileVersion> | ||
<Version>1.4.3</Version> | ||
<Version>2.0.1.0003</Version> | ||
<StartupObject>CreateMissing.Program</StartupObject> | ||
<TargetFramework>net48</TargetFramework> | ||
<TargetFramework>net8.0</TargetFramework> | ||
<Authors>Mark Crossley</Authors> | ||
<Company>Cumulus MX</Company> | ||
<PlatformTarget>AnyCPU</PlatformTarget> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> | ||
<DefineConstants>DEBUG;TRACE</DefineConstants> | ||
</PropertyGroup> | ||
|
||
<Target Name="PostBuild" AfterTargets="PostBuildEvent"> | ||
<Exec Command="if $(ConfigurationName)==Release (
echo.
echo Update Distribution folder
echo copy .exe
xcopy "$(TargetPath)" "$(SolutionDir)..\CumulusMX-Dist\CumulusMX" /D /-I /Q /Y
echo copy .config
xcopy "$(TargetPath).config" "$(SolutionDir)..\CumulusMX-Dist\CumulusMX" /D /-I /Q /Y
)" /> | ||
<Exec Command="if $(ConfigurationName)==Release (
echo.
echo Update Distribution folder
echo copy .exe
xcopy "$(TargetPath)" "$(SolutionDir)..\CumulusMX-Dist.Net\CumulusMX" /D /-I /Q /Y
xcopy "$(OutputPath)\CreateMissing.exe" "$(SolutionDir)..\CumulusMX-Dist.Net\CumulusMX" /D /-I /Q /Y

echo copy .config
xcopy "$(OutputPath)\CreateMissing.runtimeconfig.json" "$(SolutionDir)..\CumulusMX-Dist.Net\CumulusMX" /D /-I /Q /Y
)" /> | ||
</Target> | ||
|
||
</Project> | ||
</Project> |
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
Oops, something went wrong.