Loading Appx packer/Appx packer.csproj 0 → 100644 +74 −0 Original line number Diff line number Diff line <?xml version="1.0" encoding="utf-8"?> <Project ToolsVersion="15.0" 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>{B13F8701-4C1F-4FF2-86DB-FFA2CCB45F78}</ProjectGuid> <OutputType>WinExe</OutputType> <RootNamespace>Appx packer</RootNamespace> <AssemblyName>Appx packer</AssemblyName> <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion> <FileAlignment>512</FileAlignment> <ApplicationManifest>app.manifest</ApplicationManifest> <StartupObject>WindowsFormsApp1.Program</StartupObject> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <PlatformTarget>AnyCPU</PlatformTarget> <DebugSymbols>true</DebugSymbols> <DebugType>full</DebugType> <Optimize>false</Optimize> <OutputPath>bin\Debug\</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\Release\</OutputPath> <DefineConstants>TRACE</DefineConstants> <ErrorReport>prompt</ErrorReport> <WarningLevel>4</WarningLevel> </PropertyGroup> <ItemGroup> <Reference Include="System" /> <Reference Include="System.Core" /> <Reference Include="System.Drawing" /> <Reference Include="System.Windows.Forms" /> <Reference Include="System.Xml" /> </ItemGroup> <ItemGroup> <AppDesigner Include="Properties\" /> </ItemGroup> <ItemGroup> <Compile Include="Appxpacker\Properties\Resources.cs" /> <Compile Include="Appxpacker\Properties\Settings.Designer.cs"> <DependentUpon>Settings.settings</DependentUpon> <AutoGen>True</AutoGen> <DesignTimeSharedInput>True</DesignTimeSharedInput> </Compile> <Compile Include="Properties\AssemblyInfo.cs" /> <Compile Include="WindowsFormsApp1\Form1.cs"> <SubType>Form</SubType> </Compile> <Compile Include="WindowsFormsApp1\Form1.Designer.cs"> <DependentUpon>Form1.cs</DependentUpon> </Compile> <Compile Include="WindowsFormsApp1\Program.cs" /> </ItemGroup> <ItemGroup> <EmbeddedResource Include="Appxpacker\Properties\Resources.resources" /> <EmbeddedResource Include="WindowsFormsApp1\Form1.resources" /> </ItemGroup> <ItemGroup> <None Include="app.config" /> <None Include="app.manifest" /> <None Include="Appxpacker\Properties\Settings.settings"> <Generator>SettingsSingleFileGenerator</Generator> <LastGenOutput>Settings.Designer.cs</LastGenOutput> </None> </ItemGroup> <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> </Project> No newline at end of file Appx packer/Appxpacker/Properties/Resources.cs 0 → 100644 +61 −0 Original line number Diff line number Diff line using System; using System.CodeDom.Compiler; using System.ComponentModel; using System.Diagnostics; using System.Globalization; using System.Resources; using System.Runtime.CompilerServices; namespace Appxpacker.Properties { // Token: 0x02000002 RID: 2 [GeneratedCode("System.Resources.Tools.StronglyTypedResourceBuilder", "15.0.0.0")] [DebuggerNonUserCode] [CompilerGenerated] internal class Resources { // Token: 0x06000001 RID: 1 RVA: 0x00002050 File Offset: 0x00000250 internal Resources() { } // Token: 0x17000001 RID: 1 // (get) Token: 0x06000002 RID: 2 RVA: 0x0000205C File Offset: 0x0000025C [EditorBrowsable(EditorBrowsableState.Advanced)] internal static ResourceManager ResourceManager { get { bool flag = Resources.resourceMan == null; if (flag) { ResourceManager temp = new ResourceManager("Appxpacker.Properties.Resources", typeof(Resources).Assembly); Resources.resourceMan = temp; } return Resources.resourceMan; } } // Token: 0x17000002 RID: 2 // (get) Token: 0x06000003 RID: 3 RVA: 0x000020A4 File Offset: 0x000002A4 // (set) Token: 0x06000004 RID: 4 RVA: 0x000020BB File Offset: 0x000002BB [EditorBrowsable(EditorBrowsableState.Advanced)] internal static CultureInfo Culture { get { return Resources.resourceCulture; } set { Resources.resourceCulture = value; } } // Token: 0x04000001 RID: 1 private static ResourceManager resourceMan; // Token: 0x04000002 RID: 2 private static CultureInfo resourceCulture; } } Appx packer/Appxpacker/Properties/Resources.resources 0 → 100644 +180 B File added.No diff preview for this file type. View file Appx packer/Appxpacker/Properties/Settings.Designer.cs 0 → 100644 +26 −0 Original line number Diff line number Diff line using System; using System.CodeDom.Compiler; using System.Configuration; using System.Runtime.CompilerServices; namespace Appxpacker.Properties { // Token: 0x02000003 RID: 3 [CompilerGenerated] [GeneratedCode("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "15.8.0.0")] internal sealed partial class Settings : ApplicationSettingsBase { // Token: 0x17000003 RID: 3 // (get) Token: 0x06000005 RID: 5 RVA: 0x000020C4 File Offset: 0x000002C4 public static Settings Default { get { return Settings.defaultInstance; } } // Token: 0x04000003 RID: 3 private static Settings defaultInstance = (Settings)SettingsBase.Synchronized(new Settings()); } } Appx packer/Appxpacker/Properties/Settings.settings 0 → 100644 +5 −0 Original line number Diff line number Diff line <?xml version='1.0' encoding='utf-8'?> <SettingsFile CurrentProfile="(Default)" GeneratedClassNamespace="Appxpacker.Properties" GeneratedClassName="Settings" xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings"> <Profiles /> <Settings /> </SettingsFile> No newline at end of file Loading
Appx packer/Appx packer.csproj 0 → 100644 +74 −0 Original line number Diff line number Diff line <?xml version="1.0" encoding="utf-8"?> <Project ToolsVersion="15.0" 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>{B13F8701-4C1F-4FF2-86DB-FFA2CCB45F78}</ProjectGuid> <OutputType>WinExe</OutputType> <RootNamespace>Appx packer</RootNamespace> <AssemblyName>Appx packer</AssemblyName> <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion> <FileAlignment>512</FileAlignment> <ApplicationManifest>app.manifest</ApplicationManifest> <StartupObject>WindowsFormsApp1.Program</StartupObject> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <PlatformTarget>AnyCPU</PlatformTarget> <DebugSymbols>true</DebugSymbols> <DebugType>full</DebugType> <Optimize>false</Optimize> <OutputPath>bin\Debug\</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\Release\</OutputPath> <DefineConstants>TRACE</DefineConstants> <ErrorReport>prompt</ErrorReport> <WarningLevel>4</WarningLevel> </PropertyGroup> <ItemGroup> <Reference Include="System" /> <Reference Include="System.Core" /> <Reference Include="System.Drawing" /> <Reference Include="System.Windows.Forms" /> <Reference Include="System.Xml" /> </ItemGroup> <ItemGroup> <AppDesigner Include="Properties\" /> </ItemGroup> <ItemGroup> <Compile Include="Appxpacker\Properties\Resources.cs" /> <Compile Include="Appxpacker\Properties\Settings.Designer.cs"> <DependentUpon>Settings.settings</DependentUpon> <AutoGen>True</AutoGen> <DesignTimeSharedInput>True</DesignTimeSharedInput> </Compile> <Compile Include="Properties\AssemblyInfo.cs" /> <Compile Include="WindowsFormsApp1\Form1.cs"> <SubType>Form</SubType> </Compile> <Compile Include="WindowsFormsApp1\Form1.Designer.cs"> <DependentUpon>Form1.cs</DependentUpon> </Compile> <Compile Include="WindowsFormsApp1\Program.cs" /> </ItemGroup> <ItemGroup> <EmbeddedResource Include="Appxpacker\Properties\Resources.resources" /> <EmbeddedResource Include="WindowsFormsApp1\Form1.resources" /> </ItemGroup> <ItemGroup> <None Include="app.config" /> <None Include="app.manifest" /> <None Include="Appxpacker\Properties\Settings.settings"> <Generator>SettingsSingleFileGenerator</Generator> <LastGenOutput>Settings.Designer.cs</LastGenOutput> </None> </ItemGroup> <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> </Project> No newline at end of file
Appx packer/Appxpacker/Properties/Resources.cs 0 → 100644 +61 −0 Original line number Diff line number Diff line using System; using System.CodeDom.Compiler; using System.ComponentModel; using System.Diagnostics; using System.Globalization; using System.Resources; using System.Runtime.CompilerServices; namespace Appxpacker.Properties { // Token: 0x02000002 RID: 2 [GeneratedCode("System.Resources.Tools.StronglyTypedResourceBuilder", "15.0.0.0")] [DebuggerNonUserCode] [CompilerGenerated] internal class Resources { // Token: 0x06000001 RID: 1 RVA: 0x00002050 File Offset: 0x00000250 internal Resources() { } // Token: 0x17000001 RID: 1 // (get) Token: 0x06000002 RID: 2 RVA: 0x0000205C File Offset: 0x0000025C [EditorBrowsable(EditorBrowsableState.Advanced)] internal static ResourceManager ResourceManager { get { bool flag = Resources.resourceMan == null; if (flag) { ResourceManager temp = new ResourceManager("Appxpacker.Properties.Resources", typeof(Resources).Assembly); Resources.resourceMan = temp; } return Resources.resourceMan; } } // Token: 0x17000002 RID: 2 // (get) Token: 0x06000003 RID: 3 RVA: 0x000020A4 File Offset: 0x000002A4 // (set) Token: 0x06000004 RID: 4 RVA: 0x000020BB File Offset: 0x000002BB [EditorBrowsable(EditorBrowsableState.Advanced)] internal static CultureInfo Culture { get { return Resources.resourceCulture; } set { Resources.resourceCulture = value; } } // Token: 0x04000001 RID: 1 private static ResourceManager resourceMan; // Token: 0x04000002 RID: 2 private static CultureInfo resourceCulture; } }
Appx packer/Appxpacker/Properties/Resources.resources 0 → 100644 +180 B File added.No diff preview for this file type. View file
Appx packer/Appxpacker/Properties/Settings.Designer.cs 0 → 100644 +26 −0 Original line number Diff line number Diff line using System; using System.CodeDom.Compiler; using System.Configuration; using System.Runtime.CompilerServices; namespace Appxpacker.Properties { // Token: 0x02000003 RID: 3 [CompilerGenerated] [GeneratedCode("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "15.8.0.0")] internal sealed partial class Settings : ApplicationSettingsBase { // Token: 0x17000003 RID: 3 // (get) Token: 0x06000005 RID: 5 RVA: 0x000020C4 File Offset: 0x000002C4 public static Settings Default { get { return Settings.defaultInstance; } } // Token: 0x04000003 RID: 3 private static Settings defaultInstance = (Settings)SettingsBase.Synchronized(new Settings()); } }
Appx packer/Appxpacker/Properties/Settings.settings 0 → 100644 +5 −0 Original line number Diff line number Diff line <?xml version='1.0' encoding='utf-8'?> <SettingsFile CurrentProfile="(Default)" GeneratedClassNamespace="Appxpacker.Properties" GeneratedClassName="Settings" xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings"> <Profiles /> <Settings /> </SettingsFile> No newline at end of file