Skip to content
This repository has been archived by the owner on Apr 15, 2021. It is now read-only.

Commit

Permalink
chore: Remove mac/linux builds
Browse files Browse the repository at this point in the history
Unused, never going to be implemented.
  • Loading branch information
qdot committed Jun 18, 2020
1 parent bbc9349 commit c780610
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 57 deletions.
40 changes: 13 additions & 27 deletions IntifaceCLI/IntifaceCLI.csproj
Original file line number Diff line number Diff line change
@@ -1,43 +1,29 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup Condition=" '$(OS)' != 'Windows_NT' ">
<TargetFramework>netcoreapp2.1</TargetFramework>
</PropertyGroup>
<PropertyGroup Condition=" '$(OS)' == 'Windows_NT' ">
<TargetFrameworks>net47;netcoreapp2.1</TargetFrameworks>
<PropertyGroup>
<TargetFrameworks>net47</TargetFrameworks>
</PropertyGroup>
<PropertyGroup>
<PackageId />
<AssemblyName>IntifaceCLI</AssemblyName>

<Title>Intiface CLI</Title>
<Summary>Intiface CLI</Summary>
<Description>Server Command Line Interface for running Intiface Websocket, IPC, etc Servers (.Net Framework 4.7+/.Net Standard 2.0)</Description>
<Description>Server Command Line Interface for running Intiface Websocket, IPC, etc Servers (.Net Framework 4.7+, Windows 10 Only)</Description>

<GenerateAssemblyInfo>true</GenerateAssemblyInfo>

<OutputType>Exe</OutputType>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Buttplug" Version="0.5.5" />
<PackageReference Include="Buttplug.Client.Connectors.WebsocketConnector" Version="0.5.5" />
<PackageReference Include="Buttplug.Server.Connectors.WebsocketServer" Version="0.5.5" />
<PackageReference Include="Buttplug.Server.Managers.HidSharpManager" Version="0.5.5" />
<PackageReference Include="CommandLineParser" Version="2.6.0" />
<PackageReference Include="Google.Protobuf" Version="3.11.1" />
<PackageReference Include="IoTSharp.X509Extensions" Version="1.3.3" />
</ItemGroup>
<ItemGroup>
<PackageReference Update="Microsoft.NETCore.App" Version="2.1.0" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net47'">
<PackageReference Include="Buttplug.Server.Managers.UWPBluetoothManager">
<Version>0.5.5</Version>
</PackageReference>
<PackageReference Include="Buttplug.Server.Managers.WinUSBManager">
<Version>0.5.5</Version>
</PackageReference>
<PackageReference Include="Buttplug.Server.Managers.XInputGamepadManager">
<Version>0.5.5</Version>
</PackageReference>
<PackageReference Include="Buttplug" Version="0.5.9" />
<PackageReference Include="Buttplug.Client.Connectors.WebsocketConnector" Version="0.5.9" />
<PackageReference Include="Buttplug.Server.Connectors.WebsocketServer" Version="0.5.9" />
<PackageReference Include="Buttplug.Server.Managers.HidSharpManager" Version="0.5.9" />
<PackageReference Include="CommandLineParser" Version="2.8.0" />
<PackageReference Include="Google.Protobuf" Version="3.12.3" />
<PackageReference Include="IoTSharp.X509Extensions" Version="1.4.9" />
<PackageReference Include="Buttplug.Server.Managers.UWPBluetoothManager" Version="0.5.9" />
<PackageReference Include="Buttplug.Server.Managers.WinUSBManager" Version="0.5.9" />
<PackageReference Include="Buttplug.Server.Managers.XInputGamepadManager" Version="0.5.9" />
</ItemGroup>
</Project>
30 changes: 0 additions & 30 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,39 +71,9 @@ jobs:
inputs:
targetPath: '$(Build.ArtifactStagingDirectory)'
artifactName: 'win-x64-$(buildConfiguration)'
- job: "Linux"
pool:
vmImage: 'ubuntu-16.04'
strategy:
matrix:
# Debug:
# buildConfiguration: Debug
Release:
buildConfiguration: Release
steps:
- template: build/dotnet-build.yml
parameters:
dotNetPublishPlatform: "linux-x64"
platform: "linux-x64"
- job: MacOS
pool:
vmImage: 'macos-10.13'
strategy:
matrix:
# Debug:
# buildConfiguration: Debug
Release:
buildConfiguration: Release
steps:
- template: build/dotnet-build.yml
parameters:
dotNetPublishPlatform: "osx-x64"
platform: "macos-x64"
- job: Deploy
dependsOn:
- Windows
- MacOS
- Linux
condition: and(succeeded(), or(eq(variables['Build.SourceBranch'], 'refs/heads/dev'), eq(variables['Build.SourceBranch'], 'refs/heads/master')))
pool:
vmImage: 'vs2017-win2016'
Expand Down

0 comments on commit c780610

Please sign in to comment.