Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions .nuget/packages.config

This file was deleted.

76 changes: 6 additions & 70 deletions ConsoleApplication1/ConsoleApplication1.csproj
Original file line number Diff line number Diff line change
@@ -1,76 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{9C8FF3F3-C560-4390-A113-3A5220F02E15}</ProjectGuid>
<TargetFrameworks>net48;net6.0</TargetFrameworks>
<OutputPath>..\bin</OutputPath>
<OutputType>Exe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>ConsoleApplication1</RootNamespace>
<AssemblyName>ConsoleApplication1</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>..\bin\win\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\bin\win\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="DataListener.cs" />
<Compile Include="IDataListener.cs" />
<Compile Include="IWorker.cs" />
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Worker.cs" />
</ItemGroup>
<ItemGroup>
<None Include="App.config">
<SubType>Designer</SubType>
</None>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\SharpRemote.Test\SharpRemote.Test.csproj">
<Project>{377C04C5-EE8C-4159-BDDC-37F1A8372705}</Project>
<Name>SharpRemote.Test</Name>
</ProjectReference>
<ProjectReference Include="..\SharpRemote\SharpRemote.csproj">
<Project>{1B908B3A-2F3B-47B8-B69F-3827B8829586}</Project>
<Name>SharpRemote</Name>
</ProjectReference>
<ProjectReference Include="..\SharpRemote.Test\SharpRemote.Test.csproj" />
<ProjectReference Include="..\SharpRemote\SharpRemote.csproj" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>
250 changes: 71 additions & 179 deletions Samples/SampleBrowser/SampleBrowser.csproj
Original file line number Diff line number Diff line change
@@ -1,180 +1,72 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{4C11A5D4-F468-4B6E-BB57-2E1B521DBCB2}</ProjectGuid>
<OutputType>WinExe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>SampleBrowser</RootNamespace>
<AssemblyName>SampleBrowser</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>..\..\bin\win\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\..\bin\win\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="log4net, Version=2.0.12.0, Culture=neutral, PublicKeyToken=669e0ddf0bb1aa2a, processorArchitecture=MSIL">
<HintPath>..\..\packages\log4net.2.0.12\lib\net45\log4net.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Configuration" />
<Reference Include="System.Net" />
<Reference Include="System.Runtime.Serialization" />
<Reference Include="System.Web" />
<Reference Include="System.Xml" />
<Reference Include="System.Core" />
<Reference Include="System.Xaml">
<RequiredTargetFramework>4.0</RequiredTargetFramework>
</Reference>
<Reference Include="WindowsBase" />
<Reference Include="PresentationCore" />
<Reference Include="PresentationFramework" />
</ItemGroup>
<ItemGroup>
<ApplicationDefinition Include="App.xaml">
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
</ApplicationDefinition>
<Compile Include="Controls\Console.cs" />
<Compile Include="Converters\BoolFalseToVisibilityCollapsedConverter.cs" />
<Compile Include="MainWindowViewModel.cs" />
<Compile Include="Scenarios\AbstractScenario.cs" />
<Compile Include="Scenarios\BluetoothPairing\BluetoothPairingScenario.cs" />
<Compile Include="Scenarios\BluetoothPairing\BluetoothView.xaml.cs">
<DependentUpon>BluetoothView.xaml</DependentUpon>
</Compile>
<Compile Include="Scenarios\DelegateCommand.cs" />
<Compile Include="Scenarios\Host\HostScenario.cs" />
<Compile Include="Scenarios\Host\HostView.xaml.cs">
<DependentUpon>HostView.xaml</DependentUpon>
</Compile>
<Compile Include="Scenarios\Host\ISample.cs" />
<Compile Include="Scenarios\Host\TaskCommand.cs" />
<Compile Include="Scenarios\Host\Sample.cs" />
<Compile Include="Scenarios\InProcessHost\InProcessHostView.xaml.cs">
<DependentUpon>InProcessHostView.xaml</DependentUpon>
</Compile>
<Compile Include="Scenarios\InProcessHost\InProcessHostScenario.cs" />
<Compile Include="Scenarios\IScenario.cs" />
<Compile Include="Scenarios\LongTermUsage\DataLogger.cs" />
<Compile Include="Scenarios\LongTermUsage\DataPacket.cs" />
<Compile Include="Scenarios\LongTermUsage\ICommandDescription.cs" />
<Compile Include="Scenarios\LongTermUsage\IDataListener.cs" />
<Compile Include="Scenarios\LongTermUsage\ITaskController.cs" />
<Compile Include="Scenarios\LongTermUsage\ITaskExecutor.cs" />
<Compile Include="Scenarios\LongTermUsage\LongTermScenario.cs" />
<Compile Include="Scenarios\LongTermUsage\LongTermView.xaml.cs">
<DependentUpon>LongTermView.xaml</DependentUpon>
</Compile>
<Compile Include="Scenarios\LongTermUsage\TaskController.cs" />
<Compile Include="Scenarios\LongTermUsage\TaskExecutor.cs" />
<Page Include="Controls\Console.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="MainWindow.xaml">
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
</Page>
<Compile Include="App.xaml.cs">
<DependentUpon>App.xaml</DependentUpon>
<SubType>Code</SubType>
</Compile>
<Compile Include="MainWindow.xaml.cs">
<DependentUpon>MainWindow.xaml</DependentUpon>
<SubType>Code</SubType>
</Compile>
<Page Include="Scenarios\BluetoothPairing\BluetoothView.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="Scenarios\Host\HostView.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="Scenarios\InProcessHost\InProcessHostView.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="Scenarios\LongTermUsage\LongTermView.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="Themes\Generic.xaml">
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
</Page>
</ItemGroup>
<ItemGroup>
<Compile Include="Properties\AssemblyInfo.cs">
<SubType>Code</SubType>
</Compile>
<Compile Include="Properties\Resources.Designer.cs">
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
<Compile Include="Properties\Settings.Designer.cs">
<AutoGen>True</AutoGen>
<DependentUpon>Settings.settings</DependentUpon>
<DesignTimeSharedInput>True</DesignTimeSharedInput>
</Compile>
<EmbeddedResource Include="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
<None Include="packages.config" />
<None Include="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
<AppDesigner Include="Properties\" />
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\SharpRemote.Bluetooth\SharpRemote.Bluetooth.csproj">
<Project>{41f098da-29dc-48af-9c6c-2bc6f4f0be41}</Project>
<Name>SharpRemote.Bluetooth</Name>
</ProjectReference>
<ProjectReference Include="..\..\SharpRemote.Test\SharpRemote.Test.csproj">
<Project>{377C04C5-EE8C-4159-BDDC-37F1A8372705}</Project>
<Name>SharpRemote.Test</Name>
</ProjectReference>
<ProjectReference Include="..\..\SharpRemote\SharpRemote.csproj">
<Project>{1B908B3A-2F3B-47B8-B69F-3827B8829586}</Project>
<Name>SharpRemote</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup />
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net48</TargetFramework>
<OutputPath>..\..\bin</OutputPath>
<OutputType>Exe</OutputType>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\SharpRemote.Bluetooth\SharpRemote.Bluetooth.csproj" />
<ProjectReference Include="..\..\SharpRemote.Test\SharpRemote.Test.csproj" />
<ProjectReference Include="..\..\SharpRemote\SharpRemote.csproj" />

<Reference Include="System" />
<Reference Include="System.Configuration" />
<Reference Include="System.Net" />
<Reference Include="System.Runtime.Serialization" />
<Reference Include="System.Web" />
<Reference Include="System.Xml" />
<Reference Include="System.Core" />
<Reference Include="System.Xaml">
<RequiredTargetFramework>4.0</RequiredTargetFramework>
</Reference>
<Reference Include="WindowsBase" />
<Reference Include="PresentationCore" />
<Reference Include="PresentationFramework" />
</ItemGroup>
<ItemGroup>
<ApplicationDefinition Include="App.xaml">
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
</ApplicationDefinition>
<Page Include="Controls\Console.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="MainWindow.xaml">
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
</Page>
<Page Include="Scenarios\BluetoothPairing\BluetoothView.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="Scenarios\Host\HostView.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="Scenarios\InProcessHost\InProcessHostView.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="Scenarios\LongTermUsage\LongTermView.xaml">
<SubType>Designer</SubType>
<Generator>MSBuild:Compile</Generator>
</Page>
<Page Include="Themes\Generic.xaml">
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
</Page>
</ItemGroup>
<ItemGroup>
<None Include="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
<AppDesigner Include="Properties\" />
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
</ItemGroup>
</Project>
4 changes: 0 additions & 4 deletions Samples/SampleBrowser/packages.config

This file was deleted.

7 changes: 0 additions & 7 deletions Samples/SampleLibrary/NativeResource/IErrorListener.cs

This file was deleted.

31 changes: 0 additions & 31 deletions Samples/SampleLibrary/NativeResource/IUsesNativeResource.cs

This file was deleted.

Loading