terminal/src/cascadia/TerminalConnection/AzureConnection-ARM64.cpp
Dustin L. Howett (MSFT) 9dc922fc37
Unify and clean up the common build properties (#3429)
This commit cleans up and deduplicates all of the common build
preamble/postamble across exe, dll, lib and c++/winrt projects.

The following specific changes have been made:
* All projects now define their ConfigurationType
* All projects now set all their properties *before* including a common
  build file (or any other build files)
* cppwinrt.pre and cppwinrt.post now delegate most of their
  configuration to common.pre and common.post
* (becuase of the above,) all build options are conserved between
  console and c++/winrt components, including specific warnings and
  preprocessor definitions.
* More properties that are configurable per-project are now
  conditioned so the common props don't override them.
* The exe, dll, exe.or.dll, and lib postincludes have been merged into
  pre or post and switched based on condition as required
* Shared items (-shared, -common) are now explicitly vcxitems instead of
  vcxproj files.
* The link line is now manipulated after Microsoft.Cpp sets it, so the
  libraries we specify "win". All console things link first against
  onecore_apiset.lib.
* Fix all compilation errors caused by build unification
* Move CascadiaPackage's resources into a separate item file

Fixes #922.
2019-11-05 14:29:11 -08:00

51 lines
1.5 KiB
C++

// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
#include "pch.h"
#include "AzureConnection-ARM64.h"
#include "AzureConnection.g.cpp"
namespace winrt::Microsoft::Terminal::TerminalConnection::implementation
{
bool AzureConnection::IsAzureConnectionAvailable()
{
return false;
}
AzureConnection::AzureConnection(uint32_t /*rows*/, uint32_t /*columns*/)
{
throw hresult_not_implemented();
}
winrt::event_token AzureConnection::TerminalOutput(Microsoft::Terminal::TerminalConnection::TerminalOutputEventArgs const& /*handler*/)
{
throw hresult_not_implemented();
}
void AzureConnection::TerminalOutput(winrt::event_token const& /*token*/)
{
throw hresult_not_implemented();
}
winrt::event_token AzureConnection::TerminalDisconnected(Microsoft::Terminal::TerminalConnection::TerminalDisconnectedEventArgs const& /*handler*/)
{
throw hresult_not_implemented();
}
void AzureConnection::TerminalDisconnected(winrt::event_token const& /*token*/)
{
throw hresult_not_implemented();
}
void AzureConnection::Start()
{
throw hresult_not_implemented();
}
void AzureConnection::WriteInput(hstring const& /*data*/)
{
throw hresult_not_implemented();
}
void AzureConnection::Resize(uint32_t /*rows*/, uint32_t /*columns*/)
{
throw hresult_not_implemented();
}
void AzureConnection::Close()
{
throw hresult_not_implemented();
}
}