also rm after-targets (use 'fxtool install gtk|wf' now) and junk that should be done by scripts

This commit is contained in:
Michael Becker 2021-05-15 00:07:07 -04:00
parent 0d624fd457
commit dd6120ec0a
No known key found for this signature in database
GPG Key ID: 98C333A81F18C22C
4 changed files with 0 additions and 83 deletions

View File

@ -1,66 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
***********************************************************************************************
Mocha.Compiler.targets
WARNING: DO NOT MODIFY this file unless you are knowledgeable about MSBuild and have
created a backup copy. Incorrect changes to this file will make it
impossible to load or build your projects from the command-line or the IDE.
This file defines the steps in the standard build process specific for Mocha Class Library
projects. For example, it contains the step that actually calls the XML-to-MCL compiler. The
remainder of the build process is defined in Microsoft.Common.targets, which is imported by
this file.
Mocha portions Copyright (C) 2020 Mike Becker's Software.
MSBuild portions Copyright (C) Microsoft Corporation. All rights reserved.
***********************************************************************************************
-->
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildToolsPath)\Microsoft.Common.CurrentVersion.targets" />
<UsingTask AssemblyFile="UniversalEditor.MSBuild.Tasks.dll" TaskName="UEcc" />
<!--
I don't really care about MSBuild and Visual Studio compatibility because this isn't C# anymore
-->
<Target Name="Clean" >
</Target>
<Target
Name="Build"
Inputs="$(MSBuildAllProjects);
@(Compile);
@(_CoreCompileResourceInputs);
$(ApplicationIcon);
$(AssemblyOriginatorKeyFile);
@(ReferencePathWithRefAssemblies);
@(CompiledLicenseFile);
@(LinkResource);
@(EmbeddedDocumentation);
$(Win32Resource);
$(Win32Manifest);
@(CustomAdditionalCompileInputs);
$(ResolvedCodeAnalysisRuleSet);
@(AdditionalFiles);
@(EmbeddedFiles);
@(EditorConfigFiles)"
Outputs="@(OutputPath);
@(IntermediateAssembly);
@(IntermediateRefAssembly);
@(_DebugSymbolsIntermediatePath);
$(NonExistentFile);
@(CustomAdditionalCompileOutputs)"
Returns="@(CscCommandLineArgs)"
DependsOnTargets="$(CoreCompileDependsOn)"
>
<UEcc Condition="'%(_CoreCompileResourceInputs.WithCulture)' != 'true'"
OutputAssembly="$(OutputPath)$(TargetName).uex"
Sources="@(Compile)"
>
</UEcc>
<CallTarget Targets="$(TargetsTriggeredByCompilation)" Condition="'$(TargetsTriggeredByCompilation)' != ''" />
</Target>
</Project>

View File

@ -1 +0,0 @@
Output/Debug/UniversalEditor.MSBuild.Tasks.dll

View File

@ -1,15 +0,0 @@
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Target Name="AfterBuild" AfterTargets="Build">
<message text="copying UWT engine to output directory" importance="high" />
<Copy SourceFiles="../MBS.Framework.UserInterface/Output/$(Configuration)/MBS.Framework.UserInterface.Engines.GTK.dll" DestinationFolder="Output/$(Configuration)" Condition=" '$(OS)' != 'Windows_NT' " />
<Copy SourceFiles="../MBS.Framework.UserInterface/Output/$(Configuration)/MBS.Framework.UserInterface.Engines.GTK.pdb" DestinationFolder="Output/$(Configuration)" Condition=" '$(OS)' != 'Windows_NT' " />
<Copy SourceFiles="../MBS.Framework.UserInterface/Output/$(Configuration)/MBS.Framework.UserInterface.Engines.GTK.xml" DestinationFolder="Output/$(Configuration)" Condition=" '$(OS)' != 'Windows_NT' " />
<Copy SourceFiles="../MBS.Framework.UserInterface/Output/$(Configuration)/MBS.Framework.UserInterface.Engines.GTK.dll.config" DestinationFolder="Output/$(Configuration)" Condition=" '$(OS)' != 'Windows_NT' " />
<Copy SourceFiles="../MBS.Framework.UserInterface/Output/$(Configuration)/MBS.Framework.UserInterface.Engines.WindowsForms.dll" DestinationFolder="Output/$(Configuration)" Condition=" '$(OS)' == 'Windows_NT' " />
<Copy SourceFiles="../MBS.Framework.UserInterface/Output/$(Configuration)/MBS.Framework.UserInterface.Engines.WindowsForms.pdb" DestinationFolder="Output/$(Configuration)" Condition=" '$(OS)' == 'Windows_NT' " />
<Copy SourceFiles="../MBS.Framework.UserInterface/Output/$(Configuration)/MBS.Framework.UserInterface.Engines.WindowsForms.xml" DestinationFolder="Output/$(Configuration)" Condition=" '$(OS)' == 'Windows_NT' " />
</Target>
</Project>

View File

@ -1 +0,0 @@
Output/Debug/uecc.exe