Commit 77e273b3 authored by Jason Williams's avatar Jason Williams
Browse files

Minor renaming in TestAppXbox project.

Rename done to reflect better that it can be used as a WDP driver and not just for doing one-off tests. Also provides a sample script showing how it could emulate/replace other Xbox remote management tools.
parent 8f4ba71a
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -10,11 +10,11 @@ using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following 
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("TestAppXbox")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyTitle("XboxWdpDriver")]
[assembly: AssemblyDescription("Driver app for accessing WDP on an Xbox device.")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("TestAppXbox")]
[assembly: AssemblyProduct("XboxWdpDriver")]
[assembly: AssemblyCopyright("Copyright ©  2016")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
@@ -37,5 +37,5 @@ using System.Runtime.InteropServices;
// You can specify all the values or you can default the Build and Revision Numbers 
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyVersion("0.9.*")]
[assembly: AssemblyFileVersion("0.9.0.0")]
+8 −2
Original line number Diff line number Diff line
@@ -7,12 +7,13 @@
    <ProjectGuid>{1F3CA46B-1E52-418E-A293-23F3FA3BD213}</ProjectGuid>
    <OutputType>Exe</OutputType>
    <AppDesignerFolder>Properties</AppDesignerFolder>
    <RootNamespace>TestAppXbox</RootNamespace>
    <AssemblyName>TestAppXbox</AssemblyName>
    <RootNamespace>XboxWdpDriver</RootNamespace>
    <AssemblyName>XboxWdpDriver</AssemblyName>
    <TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
    <FileAlignment>512</FileAlignment>
    <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
    <StyleCopTreatErrorsAsWarnings>True</StyleCopTreatErrorsAsWarnings>
    <TargetFrameworkProfile />
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
    <PlatformTarget>AnyCPU</PlatformTarget>
@@ -23,6 +24,7 @@
    <DefineConstants>DEBUG;TRACE</DefineConstants>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
    <Prefer32Bit>false</Prefer32Bit>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
    <PlatformTarget>AnyCPU</PlatformTarget>
@@ -32,6 +34,7 @@
    <DefineConstants>TRACE</DefineConstants>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
    <Prefer32Bit>false</Prefer32Bit>
  </PropertyGroup>
  <ItemGroup>
    <Reference Include="System" />
@@ -54,6 +57,9 @@
  </ItemGroup>
  <ItemGroup>
    <None Include="App.config" />
    <None Include="Tools\XbUser.cmd">
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
    </None>
  </ItemGroup>
  <ItemGroup>
    <ProjectReference Include="..\WindowsDevicePortalWrapper\WindowsDevicePortalWrapper.csproj">
+3 −0
Original line number Diff line number Diff line
REM This is an example of how a batch script can wrap the XboxWdpDriver to resemble traditional Xbox remote management tools.

..\XboxWdpDriver.exe /op:xbluser %*
 No newline at end of file