Retargetted to windows 8.1

This commit is contained in:
Tiberiu Chibici 2014-05-05 11:34:52 +03:00
parent fb6791fee2
commit 9ed45d8139
4 changed files with 175 additions and 163 deletions

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <Project ToolsVersion="12.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')" /> <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup> <PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
@ -16,6 +16,9 @@
<AppxAutoIncrementPackageRevision>True</AppxAutoIncrementPackageRevision> <AppxAutoIncrementPackageRevision>True</AppxAutoIncrementPackageRevision>
<PackageCertificateThumbprint>4FCCD6DD6F5D1EEA43AC26BB8D451F1B54209922</PackageCertificateThumbprint> <PackageCertificateThumbprint>4FCCD6DD6F5D1EEA43AC26BB8D451F1B54209922</PackageCertificateThumbprint>
<AppxSymbolPackageEnabled>True</AppxSymbolPackageEnabled> <AppxSymbolPackageEnabled>True</AppxSymbolPackageEnabled>
<TargetPlatformVersion>8.1</TargetPlatformVersion>
<MinimumVisualStudioVersion>12</MinimumVisualStudioVersion>
<TargetFrameworkVersion />
</PropertyGroup> </PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget> <PlatformTarget>AnyCPU</PlatformTarget>
@ -299,8 +302,8 @@
<HintPath>..\packages\SharpDX.XAudio2.2.5.0\lib\win8\SharpDX.XAudio2.dll</HintPath> <HintPath>..\packages\SharpDX.XAudio2.2.5.0\lib\win8\SharpDX.XAudio2.dll</HintPath>
</Reference> </Reference>
</ItemGroup> </ItemGroup>
<PropertyGroup Condition=" '$(VisualStudioVersion)' == '' or '$(VisualStudioVersion)' &lt; '11.0' "> <PropertyGroup Condition=" '$(VisualStudioVersion)' == '' or '$(VisualStudioVersion)' &lt; '12.0' ">
<VisualStudioVersion>11.0</VisualStudioVersion> <VisualStudioVersion>12.0</VisualStudioVersion>
</PropertyGroup> </PropertyGroup>
<Import Project="$(MSBuildExtensionsPath)\Microsoft\WindowsXaml\v$(VisualStudioVersion)\Microsoft.Windows.UI.Xaml.CSharp.targets" /> <Import Project="$(MSBuildExtensionsPath)\Microsoft\WindowsXaml\v$(VisualStudioVersion)\Microsoft.Windows.UI.Xaml.CSharp.targets" />
<PropertyGroup> <PropertyGroup>

View File

@ -1,10 +1,11 @@
Feature ideas: Features:
* drum hit intensity
* drum hit intensity * audio effects (echo & stuff)
* audio effects (echo & stuff) * additional drum sets
* additional drum sets * create/delete drums
* create/delete drums * create drum kits
* create drum kits * z index in editor
* z index in editor * recording
* recording * sequencer
* sequencer (UI) help
(UI) improve layouts (retarget to 8.1)

View File

@ -1,30 +1,35 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<Package xmlns="http://schemas.microsoft.com/appx/2010/manifest"> <Package xmlns="http://schemas.microsoft.com/appx/2010/manifest" xmlns:m2="http://schemas.microsoft.com/appx/2013/manifest">
<Identity Name="35555TiberiuChibici.DrumKit" Publisher="CN=B6F45FE5-D749-4D29-874C-8323B266F3C8" Version="2.2.0.27" /> <Identity Name="35555TiberiuChibici.DrumKit" Publisher="CN=B6F45FE5-D749-4D29-874C-8323B266F3C8" Version="2.3.0.27" />
<Properties> <Properties>
<DisplayName>DrumKit</DisplayName> <DisplayName>DrumKit</DisplayName>
<PublisherDisplayName>Tiberiu Chibici</PublisherDisplayName> <PublisherDisplayName>Tiberiu Chibici</PublisherDisplayName>
<Logo>Assets\Logos\StoreLogo.png</Logo> <Logo>Assets\Logos\StoreLogo.png</Logo>
</Properties> </Properties>
<Prerequisites> <Prerequisites>
<OSMinVersion>6.2.1</OSMinVersion> <OSMinVersion>6.3.0</OSMinVersion>
<OSMaxVersionTested>6.2.1</OSMaxVersionTested> <OSMaxVersionTested>6.3.0</OSMaxVersionTested>
</Prerequisites> </Prerequisites>
<Resources> <Resources>
<Resource Language="x-generate" /> <Resource Language="x-generate" />
</Resources> </Resources>
<Applications> <Applications>
<Application Id="App" Executable="$targetnametoken$.exe" EntryPoint="DrumKit.App"> <Application Id="App" Executable="$targetnametoken$.exe" EntryPoint="DrumKit.App">
<VisualElements DisplayName="DrumKit" Logo="Assets\Logos\Logo.png" SmallLogo="Assets\Logos\SmallLogo.png" Description="DrumKit" ForegroundText="light" BackgroundColor="#164646" ToastCapable="false"> <m2:VisualElements DisplayName="DrumKit" Description="DrumKit" BackgroundColor="#164646" ForegroundText="light" ToastCapable="false" Square150x150Logo="Assets\Logos\Logo.png" Square30x30Logo="Assets\Logos\SmallLogo.png">
<DefaultTile ShowName="allLogos" WideLogo="Assets\Logos\WideLogo.png" /> <m2:DefaultTile Wide310x150Logo="Assets\Logos\WideLogo.png">
<SplashScreen Image="Assets\Logos\SplashScreen.png" /> <m2:ShowNameOnTiles>
<InitialRotationPreference> <m2:ShowOn Tile="square150x150Logo" />
<Rotation Preference="portrait" /> <m2:ShowOn Tile="wide310x150Logo" />
<Rotation Preference="landscape" /> </m2:ShowNameOnTiles>
<Rotation Preference="portraitFlipped" /> </m2:DefaultTile>
<Rotation Preference="landscapeFlipped" /> <m2:InitialRotationPreference>
</InitialRotationPreference> <m2:Rotation Preference="portrait" />
</VisualElements> <m2:Rotation Preference="landscape" />
</Application> <m2:Rotation Preference="portraitFlipped" />
</Applications> <m2:Rotation Preference="landscapeFlipped" />
</m2:InitialRotationPreference>
<m2:SplashScreen Image="Assets\Logos\SplashScreen.png" />
</m2:VisualElements>
</Application>
</Applications>
</Package> </Package>

View File

@ -1,122 +1,125 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <Project ToolsVersion="12.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')" /> <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup> <PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>8.0.30703</ProductVersion> <ProductVersion>8.0.30703</ProductVersion>
<SchemaVersion>2.0</SchemaVersion> <SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{5CB567D7-572E-4BAE-802F-7E3F62CDDF64}</ProjectGuid> <ProjectGuid>{5CB567D7-572E-4BAE-802F-7E3F62CDDF64}</ProjectGuid>
<OutputType>Library</OutputType> <OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder> <AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Tarball</RootNamespace> <RootNamespace>Tarball</RootNamespace>
<AssemblyName>Tarball</AssemblyName> <AssemblyName>Tarball</AssemblyName>
<DefaultLanguage>en-US</DefaultLanguage> <DefaultLanguage>en-US</DefaultLanguage>
<FileAlignment>512</FileAlignment> <FileAlignment>512</FileAlignment>
<ProjectTypeGuids>{BC8A1FFA-BEE3-4634-8014-F334798102B3};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids> <ProjectTypeGuids>{BC8A1FFA-BEE3-4634-8014-F334798102B3};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
</PropertyGroup> <TargetPlatformVersion>8.1</TargetPlatformVersion>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <MinimumVisualStudioVersion>12</MinimumVisualStudioVersion>
<DebugSymbols>true</DebugSymbols> <TargetFrameworkVersion />
<DebugType>full</DebugType> </PropertyGroup>
<Optimize>false</Optimize> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<OutputPath>bin\Debug\</OutputPath> <DebugSymbols>true</DebugSymbols>
<DefineConstants>DEBUG;TRACE;NETFX_CORE</DefineConstants> <DebugType>full</DebugType>
<ErrorReport>prompt</ErrorReport> <Optimize>false</Optimize>
<WarningLevel>4</WarningLevel> <OutputPath>bin\Debug\</OutputPath>
</PropertyGroup> <DefineConstants>DEBUG;TRACE;NETFX_CORE</DefineConstants>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> <ErrorReport>prompt</ErrorReport>
<DebugType>pdbonly</DebugType> <WarningLevel>4</WarningLevel>
<Optimize>true</Optimize> </PropertyGroup>
<OutputPath>bin\Release\</OutputPath> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DefineConstants>TRACE;NETFX_CORE</DefineConstants> <DebugType>pdbonly</DebugType>
<ErrorReport>prompt</ErrorReport> <Optimize>true</Optimize>
<WarningLevel>4</WarningLevel> <OutputPath>bin\Release\</OutputPath>
</PropertyGroup> <DefineConstants>TRACE;NETFX_CORE</DefineConstants>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|ARM'"> <ErrorReport>prompt</ErrorReport>
<DebugSymbols>true</DebugSymbols> <WarningLevel>4</WarningLevel>
<OutputPath>bin\ARM\Debug\</OutputPath> </PropertyGroup>
<DefineConstants>DEBUG;TRACE;NETFX_CORE</DefineConstants> <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|ARM'">
<NoWarn>;2008</NoWarn> <DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType> <OutputPath>bin\ARM\Debug\</OutputPath>
<PlatformTarget>ARM</PlatformTarget> <DefineConstants>DEBUG;TRACE;NETFX_CORE</DefineConstants>
<UseVSHostingProcess>false</UseVSHostingProcess> <NoWarn>;2008</NoWarn>
<ErrorReport>prompt</ErrorReport> <DebugType>full</DebugType>
<Prefer32Bit>true</Prefer32Bit> <PlatformTarget>ARM</PlatformTarget>
</PropertyGroup> <UseVSHostingProcess>false</UseVSHostingProcess>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|ARM'"> <ErrorReport>prompt</ErrorReport>
<OutputPath>bin\ARM\Release\</OutputPath> <Prefer32Bit>true</Prefer32Bit>
<DefineConstants>TRACE;NETFX_CORE</DefineConstants> </PropertyGroup>
<Optimize>true</Optimize> <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|ARM'">
<NoWarn>;2008</NoWarn> <OutputPath>bin\ARM\Release\</OutputPath>
<DebugType>pdbonly</DebugType> <DefineConstants>TRACE;NETFX_CORE</DefineConstants>
<PlatformTarget>ARM</PlatformTarget> <Optimize>true</Optimize>
<UseVSHostingProcess>false</UseVSHostingProcess> <NoWarn>;2008</NoWarn>
<ErrorReport>prompt</ErrorReport> <DebugType>pdbonly</DebugType>
<Prefer32Bit>true</Prefer32Bit> <PlatformTarget>ARM</PlatformTarget>
</PropertyGroup> <UseVSHostingProcess>false</UseVSHostingProcess>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'"> <ErrorReport>prompt</ErrorReport>
<DebugSymbols>true</DebugSymbols> <Prefer32Bit>true</Prefer32Bit>
<OutputPath>bin\x64\Debug\</OutputPath> </PropertyGroup>
<DefineConstants>DEBUG;TRACE;NETFX_CORE</DefineConstants> <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
<NoWarn>;2008</NoWarn> <DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType> <OutputPath>bin\x64\Debug\</OutputPath>
<PlatformTarget>x64</PlatformTarget> <DefineConstants>DEBUG;TRACE;NETFX_CORE</DefineConstants>
<UseVSHostingProcess>false</UseVSHostingProcess> <NoWarn>;2008</NoWarn>
<ErrorReport>prompt</ErrorReport> <DebugType>full</DebugType>
<Prefer32Bit>true</Prefer32Bit> <PlatformTarget>x64</PlatformTarget>
</PropertyGroup> <UseVSHostingProcess>false</UseVSHostingProcess>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'"> <ErrorReport>prompt</ErrorReport>
<OutputPath>bin\x64\Release\</OutputPath> <Prefer32Bit>true</Prefer32Bit>
<DefineConstants>TRACE;NETFX_CORE</DefineConstants> </PropertyGroup>
<Optimize>true</Optimize> <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
<NoWarn>;2008</NoWarn> <OutputPath>bin\x64\Release\</OutputPath>
<DebugType>pdbonly</DebugType> <DefineConstants>TRACE;NETFX_CORE</DefineConstants>
<PlatformTarget>x64</PlatformTarget> <Optimize>true</Optimize>
<UseVSHostingProcess>false</UseVSHostingProcess> <NoWarn>;2008</NoWarn>
<ErrorReport>prompt</ErrorReport> <DebugType>pdbonly</DebugType>
<Prefer32Bit>true</Prefer32Bit> <PlatformTarget>x64</PlatformTarget>
</PropertyGroup> <UseVSHostingProcess>false</UseVSHostingProcess>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'"> <ErrorReport>prompt</ErrorReport>
<DebugSymbols>true</DebugSymbols> <Prefer32Bit>true</Prefer32Bit>
<OutputPath>bin\x86\Debug\</OutputPath> </PropertyGroup>
<DefineConstants>DEBUG;TRACE;NETFX_CORE</DefineConstants> <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
<NoWarn>;2008</NoWarn> <DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType> <OutputPath>bin\x86\Debug\</OutputPath>
<PlatformTarget>x86</PlatformTarget> <DefineConstants>DEBUG;TRACE;NETFX_CORE</DefineConstants>
<UseVSHostingProcess>false</UseVSHostingProcess> <NoWarn>;2008</NoWarn>
<ErrorReport>prompt</ErrorReport> <DebugType>full</DebugType>
<Prefer32Bit>true</Prefer32Bit> <PlatformTarget>x86</PlatformTarget>
</PropertyGroup> <UseVSHostingProcess>false</UseVSHostingProcess>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'"> <ErrorReport>prompt</ErrorReport>
<OutputPath>bin\x86\Release\</OutputPath> <Prefer32Bit>true</Prefer32Bit>
<DefineConstants>TRACE;NETFX_CORE</DefineConstants> </PropertyGroup>
<Optimize>true</Optimize> <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
<NoWarn>;2008</NoWarn> <OutputPath>bin\x86\Release\</OutputPath>
<DebugType>pdbonly</DebugType> <DefineConstants>TRACE;NETFX_CORE</DefineConstants>
<PlatformTarget>x86</PlatformTarget> <Optimize>true</Optimize>
<UseVSHostingProcess>false</UseVSHostingProcess> <NoWarn>;2008</NoWarn>
<ErrorReport>prompt</ErrorReport> <DebugType>pdbonly</DebugType>
<Prefer32Bit>true</Prefer32Bit> <PlatformTarget>x86</PlatformTarget>
</PropertyGroup> <UseVSHostingProcess>false</UseVSHostingProcess>
<ItemGroup> <ErrorReport>prompt</ErrorReport>
<!-- A reference to the entire .Net Framework and Windows SDK are automatically included --> <Prefer32Bit>true</Prefer32Bit>
</ItemGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<Compile Include="IOHelper.cs" /> <!-- A reference to the entire .Net Framework and Windows SDK are automatically included -->
<Compile Include="TarballHeader.cs" /> </ItemGroup>
<Compile Include="TarballReader.cs" /> <ItemGroup>
<Compile Include="Properties\AssemblyInfo.cs" /> <Compile Include="IOHelper.cs" />
<Compile Include="TarballWriter.cs" /> <Compile Include="TarballHeader.cs" />
</ItemGroup> <Compile Include="TarballReader.cs" />
<PropertyGroup Condition=" '$(VisualStudioVersion)' == '' or '$(VisualStudioVersion)' &lt; '11.0' "> <Compile Include="Properties\AssemblyInfo.cs" />
<VisualStudioVersion>11.0</VisualStudioVersion> <Compile Include="TarballWriter.cs" />
</PropertyGroup> </ItemGroup>
<Import Project="$(MSBuildExtensionsPath)\Microsoft\WindowsXaml\v$(VisualStudioVersion)\Microsoft.Windows.UI.Xaml.CSharp.targets" /> <PropertyGroup Condition=" '$(VisualStudioVersion)' == '' or '$(VisualStudioVersion)' &lt; '12.0' ">
<!-- To modify your build process, add your task inside one of the targets below and uncomment it. <VisualStudioVersion>12.0</VisualStudioVersion>
Other similar extension points exist, see Microsoft.Common.targets. </PropertyGroup>
<Target Name="BeforeBuild"> <Import Project="$(MSBuildExtensionsPath)\Microsoft\WindowsXaml\v$(VisualStudioVersion)\Microsoft.Windows.UI.Xaml.CSharp.targets" />
</Target> <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
<Target Name="AfterBuild"> Other similar extension points exist, see Microsoft.Common.targets.
</Target> <Target Name="BeforeBuild">
--> </Target>
<Target Name="AfterBuild">
</Target>
-->
</Project> </Project>