mirror of
https://github.com/celisej567/Base-mod-creator-for-tsp.git
synced 2025-12-31 01:49:32 +03:00
Add files via upload
This commit is contained in:
@@ -8,13 +8,19 @@ EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
Debug|x86 = Debug|x86
|
||||
Release|Any CPU = Release|Any CPU
|
||||
Release|x86 = Release|x86
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{33ACDB5A-E696-46FC-A78E-A0A5E514B193}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{33ACDB5A-E696-46FC-A78E-A0A5E514B193}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{33ACDB5A-E696-46FC-A78E-A0A5E514B193}.Debug|x86.ActiveCfg = Debug|x86
|
||||
{33ACDB5A-E696-46FC-A78E-A0A5E514B193}.Debug|x86.Build.0 = Debug|x86
|
||||
{33ACDB5A-E696-46FC-A78E-A0A5E514B193}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{33ACDB5A-E696-46FC-A78E-A0A5E514B193}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{33ACDB5A-E696-46FC-A78E-A0A5E514B193}.Release|x86.ActiveCfg = Release|x86
|
||||
{33ACDB5A-E696-46FC-A78E-A0A5E514B193}.Release|x86.Build.0 = Release|x86
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
|
||||
@@ -5,9 +5,10 @@
|
||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||
xmlns:local="clr-namespace:filezamena"
|
||||
mc:Ignorable="d"
|
||||
|
||||
Title="TSPMODMAKER"
|
||||
Height="450"
|
||||
Width="515.265"
|
||||
Height="448.5"
|
||||
Width="659.265"
|
||||
Icon="C:\Users\celis\Documents\The Stanley Parable Ultimate\Autorun Files\image\4.ico"
|
||||
ResizeMode="NoResize"
|
||||
>
|
||||
@@ -16,7 +17,7 @@
|
||||
<Button
|
||||
x:Name="Start"
|
||||
Content="Start"
|
||||
Margin="147,288,154,0"
|
||||
Margin="274,288,27,0"
|
||||
VerticalAlignment="Top"
|
||||
Height="108"
|
||||
FontSize="72"
|
||||
@@ -103,13 +104,13 @@
|
||||
x:Name="DLLCheck"
|
||||
Content="Create DLL for SourceMods"
|
||||
HorizontalAlignment="Left"
|
||||
Margin="27,258,0,0"
|
||||
Margin="27,293,0,0"
|
||||
VerticalAlignment="Top"
|
||||
RenderTransformOrigin="0.63,-1.324"
|
||||
Width="199"
|
||||
Padding="4,-1,0,0"
|
||||
ScrollViewer.CanContentScroll="True"
|
||||
Height="25"
|
||||
Height="26"
|
||||
VerticalContentAlignment="Center"
|
||||
/>
|
||||
|
||||
@@ -117,7 +118,7 @@
|
||||
<Grid.Effect>
|
||||
<BlurEffect Radius="1.5" RenderingBias="Quality"/>
|
||||
</Grid.Effect>
|
||||
|
||||
|
||||
|
||||
|
||||
</Grid>
|
||||
</Window>
|
||||
|
||||
@@ -12,10 +12,16 @@ using System.Windows.Media;
|
||||
using System.Windows.Media.Imaging;
|
||||
using System.Windows.Navigation;
|
||||
using System.Windows.Shapes;
|
||||
using System.IO;
|
||||
using System.Diagnostics;
|
||||
|
||||
|
||||
|
||||
using System.Net;
|
||||
using System.IO;
|
||||
|
||||
|
||||
|
||||
|
||||
namespace filezamena
|
||||
{
|
||||
/// <summary>
|
||||
@@ -35,13 +41,29 @@ namespace filezamena
|
||||
string modname = this.modname.Text;
|
||||
string foldername = this.Foldername.Text+"\\";
|
||||
string clearfoldername = this.Foldername.Text;
|
||||
|
||||
|
||||
void DLL()
|
||||
{
|
||||
if (!Directory.Exists(foldername + "bin"))
|
||||
Directory.CreateDirectory(foldername + "bin");
|
||||
|
||||
byte[] client = Properties.Resources.client;
|
||||
var client = new WebClient();
|
||||
client.DownloadFile("https://github.com/celisej567/Base-mod-creator-for-tsp/blob/master/filezamena/Resources/client.dll", foldername+"bin\\client.dll");
|
||||
|
||||
var server = new WebClient();
|
||||
client.DownloadFile("https://github.com/celisej567/Base-mod-creator-for-tsp/blob/master/filezamena/Resources/server.dll", foldername + "bin\\server.dll");
|
||||
|
||||
var matchmaking = new WebClient();
|
||||
client.DownloadFile("https://github.com/celisej567/Base-mod-creator-for-tsp/blob/master/filezamena/Resources/matchmaking.dll", foldername + "bin\\matchmaking.dll");
|
||||
}
|
||||
|
||||
/*
|
||||
void DLL()
|
||||
{
|
||||
if (!Directory.Exists(foldername + "bin"))
|
||||
Directory.CreateDirectory(foldername + "bin");
|
||||
|
||||
byte[] client = Properties.Resources.client;
|
||||
File.WriteAllBytes(foldername + "bin\\client.dll", client);
|
||||
|
||||
byte[] server = Properties.Resources.server;
|
||||
@@ -50,7 +72,7 @@ namespace filezamena
|
||||
byte[] matchmaking = Properties.Resources.matchmaking;
|
||||
File.WriteAllBytes(foldername + "bin\\matchmaking.dll", matchmaking);
|
||||
}
|
||||
|
||||
*/
|
||||
|
||||
string path_dir = "thestanleyparable\\";
|
||||
string path = "gameinfo.txt";
|
||||
@@ -113,10 +135,6 @@ namespace filezamena
|
||||
|
||||
Console.WriteLine("---COPING FILES---");
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
if (!File.Exists(foldername + path))
|
||||
{ File.WriteAllText(foldername + path, Properties.Resources.gameinfo); }
|
||||
@@ -138,6 +156,9 @@ namespace filezamena
|
||||
gameinfo_new_mod = gameinfo_new_mod.Replace("\"The Stanley Parable\"", "\"" + modname + "\"");
|
||||
File.WriteAllText(foldername + path, gameinfo_new_mod);
|
||||
|
||||
File.WriteAllText("information.lgbt", "Generated by \"Base mod creator for tsp\".\n \t\tCreator celisej567/NTT.");
|
||||
|
||||
|
||||
this.Progressbar.Value = 100;
|
||||
this.End.Visibility = Visibility.Visible;
|
||||
|
||||
|
||||
BIN
filezamena/bin/Release/filezamena.exe
Normal file
BIN
filezamena/bin/Release/filezamena.exe
Normal file
Binary file not shown.
37
filezamena/bin/Release/thestanleyparable/gameinfo.txt
Normal file
37
filezamena/bin/Release/thestanleyparable/gameinfo.txt
Normal file
@@ -0,0 +1,37 @@
|
||||
"GameInfo"
|
||||
{
|
||||
game "The Stanley Parable"
|
||||
title "The Stanley Parable"
|
||||
GameData "portal2.fgd"
|
||||
gamelogo 1
|
||||
|
||||
SupportsDX8 0
|
||||
SupportsXbox360 1
|
||||
|
||||
hasportals 1
|
||||
|
||||
FileSystem
|
||||
{
|
||||
SteamAppId 221910
|
||||
ToolsAppId 211
|
||||
|
||||
|
||||
|
||||
SearchPaths
|
||||
{
|
||||
|
||||
Game |all_source_engine_paths|Folder name
|
||||
Game |all_source_engine_paths|Folder name
|
||||
Game |all_source_engine_paths|Folder name
|
||||
Game |all_source_engine_paths|Folder name
|
||||
Game |all_source_engine_paths|Folder name
|
||||
Game |all_source_engine_paths|Folder name
|
||||
Game |all_source_engine_paths|Folder name
|
||||
Game |all_source_engine_paths|Folder name
|
||||
Game |all_source_engine_paths|Folder name
|
||||
Game |all_source_engine_paths|Folder name
|
||||
Game |gameinfo_path|.
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -34,6 +34,26 @@
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<OutputPath>bin\x86\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<DebugType>full</DebugType>
|
||||
<PlatformTarget>x86</PlatformTarget>
|
||||
<LangVersion>7.3</LangVersion>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<Prefer32Bit>true</Prefer32Bit>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
|
||||
<OutputPath>bin\x86\Release\</OutputPath>
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
<Optimize>true</Optimize>
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<PlatformTarget>x86</PlatformTarget>
|
||||
<LangVersion>7.3</LangVersion>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<Prefer32Bit>true</Prefer32Bit>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Data" />
|
||||
|
||||
70
filezamena/obj/Release/App.g.cs
Normal file
70
filezamena/obj/Release/App.g.cs
Normal file
@@ -0,0 +1,70 @@
|
||||
#pragma checksum "..\..\App.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "F51EC6374F5A0C43807EACF8CEBFB75BB97421EAE24474A0E07C276F674A71B1"
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// Этот код создан программой.
|
||||
// Исполняемая версия:4.0.30319.42000
|
||||
//
|
||||
// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае
|
||||
// повторной генерации кода.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Diagnostics;
|
||||
using System.Windows;
|
||||
using System.Windows.Automation;
|
||||
using System.Windows.Controls;
|
||||
using System.Windows.Controls.Primitives;
|
||||
using System.Windows.Data;
|
||||
using System.Windows.Documents;
|
||||
using System.Windows.Ink;
|
||||
using System.Windows.Input;
|
||||
using System.Windows.Markup;
|
||||
using System.Windows.Media;
|
||||
using System.Windows.Media.Animation;
|
||||
using System.Windows.Media.Effects;
|
||||
using System.Windows.Media.Imaging;
|
||||
using System.Windows.Media.Media3D;
|
||||
using System.Windows.Media.TextFormatting;
|
||||
using System.Windows.Navigation;
|
||||
using System.Windows.Shapes;
|
||||
using System.Windows.Shell;
|
||||
using filezamena;
|
||||
|
||||
|
||||
namespace filezamena {
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// App
|
||||
/// </summary>
|
||||
public partial class App : System.Windows.Application {
|
||||
|
||||
/// <summary>
|
||||
/// InitializeComponent
|
||||
/// </summary>
|
||||
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
|
||||
public void InitializeComponent() {
|
||||
|
||||
#line 5 "..\..\App.xaml"
|
||||
this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Application Entry Point.
|
||||
/// </summary>
|
||||
[System.STAThreadAttribute()]
|
||||
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
|
||||
public static void Main() {
|
||||
filezamena.App app = new filezamena.App();
|
||||
app.InitializeComponent();
|
||||
app.Run();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
70
filezamena/obj/Release/App.g.i.cs
Normal file
70
filezamena/obj/Release/App.g.i.cs
Normal file
@@ -0,0 +1,70 @@
|
||||
#pragma checksum "..\..\App.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "F51EC6374F5A0C43807EACF8CEBFB75BB97421EAE24474A0E07C276F674A71B1"
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// Этот код создан программой.
|
||||
// Исполняемая версия:4.0.30319.42000
|
||||
//
|
||||
// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае
|
||||
// повторной генерации кода.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Diagnostics;
|
||||
using System.Windows;
|
||||
using System.Windows.Automation;
|
||||
using System.Windows.Controls;
|
||||
using System.Windows.Controls.Primitives;
|
||||
using System.Windows.Data;
|
||||
using System.Windows.Documents;
|
||||
using System.Windows.Ink;
|
||||
using System.Windows.Input;
|
||||
using System.Windows.Markup;
|
||||
using System.Windows.Media;
|
||||
using System.Windows.Media.Animation;
|
||||
using System.Windows.Media.Effects;
|
||||
using System.Windows.Media.Imaging;
|
||||
using System.Windows.Media.Media3D;
|
||||
using System.Windows.Media.TextFormatting;
|
||||
using System.Windows.Navigation;
|
||||
using System.Windows.Shapes;
|
||||
using System.Windows.Shell;
|
||||
using filezamena;
|
||||
|
||||
|
||||
namespace filezamena {
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// App
|
||||
/// </summary>
|
||||
public partial class App : System.Windows.Application {
|
||||
|
||||
/// <summary>
|
||||
/// InitializeComponent
|
||||
/// </summary>
|
||||
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
|
||||
public void InitializeComponent() {
|
||||
|
||||
#line 5 "..\..\App.xaml"
|
||||
this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Application Entry Point.
|
||||
/// </summary>
|
||||
[System.STAThreadAttribute()]
|
||||
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
|
||||
public static void Main() {
|
||||
filezamena.App app = new filezamena.App();
|
||||
app.InitializeComponent();
|
||||
app.Run();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Binary file not shown.
BIN
filezamena/obj/Release/MainWindow.baml
Normal file
BIN
filezamena/obj/Release/MainWindow.baml
Normal file
Binary file not shown.
150
filezamena/obj/Release/MainWindow.g.cs
Normal file
150
filezamena/obj/Release/MainWindow.g.cs
Normal file
@@ -0,0 +1,150 @@
|
||||
#pragma checksum "..\..\MainWindow.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "EABEF2FFC90E63C8701D2F6E9DFBE6232AACD976215C6049B29D1B06B639A6E1"
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// Этот код создан программой.
|
||||
// Исполняемая версия:4.0.30319.42000
|
||||
//
|
||||
// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае
|
||||
// повторной генерации кода.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Diagnostics;
|
||||
using System.Windows;
|
||||
using System.Windows.Automation;
|
||||
using System.Windows.Controls;
|
||||
using System.Windows.Controls.Primitives;
|
||||
using System.Windows.Data;
|
||||
using System.Windows.Documents;
|
||||
using System.Windows.Ink;
|
||||
using System.Windows.Input;
|
||||
using System.Windows.Markup;
|
||||
using System.Windows.Media;
|
||||
using System.Windows.Media.Animation;
|
||||
using System.Windows.Media.Effects;
|
||||
using System.Windows.Media.Imaging;
|
||||
using System.Windows.Media.Media3D;
|
||||
using System.Windows.Media.TextFormatting;
|
||||
using System.Windows.Navigation;
|
||||
using System.Windows.Shapes;
|
||||
using System.Windows.Shell;
|
||||
using filezamena;
|
||||
|
||||
|
||||
namespace filezamena {
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// MainWindow
|
||||
/// </summary>
|
||||
public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
|
||||
|
||||
|
||||
#line 18 "..\..\MainWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.Button Start;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 41 "..\..\MainWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.TextBox modname;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 56 "..\..\MainWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.TextBox Foldername;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 71 "..\..\MainWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.ProgressBar Progressbar;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 82 "..\..\MainWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.Label End;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 104 "..\..\MainWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.CheckBox DLLCheck;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
private bool _contentLoaded;
|
||||
|
||||
/// <summary>
|
||||
/// InitializeComponent
|
||||
/// </summary>
|
||||
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
|
||||
public void InitializeComponent() {
|
||||
if (_contentLoaded) {
|
||||
return;
|
||||
}
|
||||
_contentLoaded = true;
|
||||
System.Uri resourceLocater = new System.Uri("/filezamena;component/mainwindow.xaml", System.UriKind.Relative);
|
||||
|
||||
#line 1 "..\..\MainWindow.xaml"
|
||||
System.Windows.Application.LoadComponent(this, resourceLocater);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
}
|
||||
|
||||
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
|
||||
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
|
||||
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
|
||||
switch (connectionId)
|
||||
{
|
||||
case 1:
|
||||
this.Start = ((System.Windows.Controls.Button)(target));
|
||||
|
||||
#line 25 "..\..\MainWindow.xaml"
|
||||
this.Start.Click += new System.Windows.RoutedEventHandler(this.Button_Click);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
return;
|
||||
case 2:
|
||||
this.modname = ((System.Windows.Controls.TextBox)(target));
|
||||
return;
|
||||
case 3:
|
||||
this.Foldername = ((System.Windows.Controls.TextBox)(target));
|
||||
return;
|
||||
case 4:
|
||||
this.Progressbar = ((System.Windows.Controls.ProgressBar)(target));
|
||||
return;
|
||||
case 5:
|
||||
this.End = ((System.Windows.Controls.Label)(target));
|
||||
return;
|
||||
case 6:
|
||||
this.DLLCheck = ((System.Windows.Controls.CheckBox)(target));
|
||||
return;
|
||||
}
|
||||
this._contentLoaded = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
150
filezamena/obj/Release/MainWindow.g.i.cs
Normal file
150
filezamena/obj/Release/MainWindow.g.i.cs
Normal file
@@ -0,0 +1,150 @@
|
||||
#pragma checksum "..\..\MainWindow.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "EABEF2FFC90E63C8701D2F6E9DFBE6232AACD976215C6049B29D1B06B639A6E1"
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// Этот код создан программой.
|
||||
// Исполняемая версия:4.0.30319.42000
|
||||
//
|
||||
// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае
|
||||
// повторной генерации кода.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Diagnostics;
|
||||
using System.Windows;
|
||||
using System.Windows.Automation;
|
||||
using System.Windows.Controls;
|
||||
using System.Windows.Controls.Primitives;
|
||||
using System.Windows.Data;
|
||||
using System.Windows.Documents;
|
||||
using System.Windows.Ink;
|
||||
using System.Windows.Input;
|
||||
using System.Windows.Markup;
|
||||
using System.Windows.Media;
|
||||
using System.Windows.Media.Animation;
|
||||
using System.Windows.Media.Effects;
|
||||
using System.Windows.Media.Imaging;
|
||||
using System.Windows.Media.Media3D;
|
||||
using System.Windows.Media.TextFormatting;
|
||||
using System.Windows.Navigation;
|
||||
using System.Windows.Shapes;
|
||||
using System.Windows.Shell;
|
||||
using filezamena;
|
||||
|
||||
|
||||
namespace filezamena {
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// MainWindow
|
||||
/// </summary>
|
||||
public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
|
||||
|
||||
|
||||
#line 18 "..\..\MainWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.Button Start;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 41 "..\..\MainWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.TextBox modname;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 56 "..\..\MainWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.TextBox Foldername;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 71 "..\..\MainWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.ProgressBar Progressbar;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 82 "..\..\MainWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.Label End;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 104 "..\..\MainWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.CheckBox DLLCheck;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
private bool _contentLoaded;
|
||||
|
||||
/// <summary>
|
||||
/// InitializeComponent
|
||||
/// </summary>
|
||||
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
|
||||
public void InitializeComponent() {
|
||||
if (_contentLoaded) {
|
||||
return;
|
||||
}
|
||||
_contentLoaded = true;
|
||||
System.Uri resourceLocater = new System.Uri("/filezamena;component/mainwindow.xaml", System.UriKind.Relative);
|
||||
|
||||
#line 1 "..\..\MainWindow.xaml"
|
||||
System.Windows.Application.LoadComponent(this, resourceLocater);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
}
|
||||
|
||||
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
|
||||
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
|
||||
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
|
||||
switch (connectionId)
|
||||
{
|
||||
case 1:
|
||||
this.Start = ((System.Windows.Controls.Button)(target));
|
||||
|
||||
#line 25 "..\..\MainWindow.xaml"
|
||||
this.Start.Click += new System.Windows.RoutedEventHandler(this.Button_Click);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
return;
|
||||
case 2:
|
||||
this.modname = ((System.Windows.Controls.TextBox)(target));
|
||||
return;
|
||||
case 3:
|
||||
this.Foldername = ((System.Windows.Controls.TextBox)(target));
|
||||
return;
|
||||
case 4:
|
||||
this.Progressbar = ((System.Windows.Controls.ProgressBar)(target));
|
||||
return;
|
||||
case 5:
|
||||
this.End = ((System.Windows.Controls.Label)(target));
|
||||
return;
|
||||
case 6:
|
||||
this.DLLCheck = ((System.Windows.Controls.CheckBox)(target));
|
||||
return;
|
||||
}
|
||||
this._contentLoaded = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Binary file not shown.
BIN
filezamena/obj/Release/filezamena.Properties.Resources.resources
Normal file
BIN
filezamena/obj/Release/filezamena.Properties.Resources.resources
Normal file
Binary file not shown.
@@ -0,0 +1 @@
|
||||
3c3c540529da7c01b9cf2816a1b4af5483684c9b
|
||||
@@ -0,0 +1,15 @@
|
||||
F:\C#\filezamena\filezamena\obj\Release\filezamena.csprojAssemblyReference.cache
|
||||
F:\C#\filezamena\filezamena\obj\Release\App.g.cs
|
||||
F:\C#\filezamena\filezamena\obj\Release\filezamena_MarkupCompile.cache
|
||||
F:\C#\filezamena\filezamena\bin\Release\filezamena.exe.config
|
||||
F:\C#\filezamena\filezamena\bin\Release\filezamena.exe
|
||||
F:\C#\filezamena\filezamena\bin\Release\filezamena.pdb
|
||||
F:\C#\filezamena\filezamena\obj\Release\MainWindow.g.cs
|
||||
F:\C#\filezamena\filezamena\obj\Release\filezamena_MarkupCompile.lref
|
||||
F:\C#\filezamena\filezamena\obj\Release\MainWindow.baml
|
||||
F:\C#\filezamena\filezamena\obj\Release\filezamena.g.resources
|
||||
F:\C#\filezamena\filezamena\obj\Release\filezamena.Properties.Resources.resources
|
||||
F:\C#\filezamena\filezamena\obj\Release\filezamena.csproj.GenerateResource.cache
|
||||
F:\C#\filezamena\filezamena\obj\Release\filezamena.csproj.CoreCompileInputs.cache
|
||||
F:\C#\filezamena\filezamena\obj\Release\filezamena.exe
|
||||
F:\C#\filezamena\filezamena\obj\Release\filezamena.pdb
|
||||
BIN
filezamena/obj/Release/filezamena.csproj.GenerateResource.cache
Normal file
BIN
filezamena/obj/Release/filezamena.csproj.GenerateResource.cache
Normal file
Binary file not shown.
BIN
filezamena/obj/Release/filezamena.csprojAssemblyReference.cache
Normal file
BIN
filezamena/obj/Release/filezamena.csprojAssemblyReference.cache
Normal file
Binary file not shown.
BIN
filezamena/obj/Release/filezamena.exe
Normal file
BIN
filezamena/obj/Release/filezamena.exe
Normal file
Binary file not shown.
BIN
filezamena/obj/Release/filezamena.g.resources
Normal file
BIN
filezamena/obj/Release/filezamena.g.resources
Normal file
Binary file not shown.
BIN
filezamena/obj/Release/filezamena.pdb
Normal file
BIN
filezamena/obj/Release/filezamena.pdb
Normal file
Binary file not shown.
20
filezamena/obj/Release/filezamena_MarkupCompile.cache
Normal file
20
filezamena/obj/Release/filezamena_MarkupCompile.cache
Normal file
@@ -0,0 +1,20 @@
|
||||
filezamena
|
||||
|
||||
|
||||
winexe
|
||||
C#
|
||||
.cs
|
||||
F:\C#\filezamena\filezamena\obj\Release\
|
||||
filezamena
|
||||
none
|
||||
false
|
||||
TRACE
|
||||
F:\C#\filezamena\filezamena\App.xaml
|
||||
11151548125
|
||||
|
||||
5-2017746502
|
||||
141183416626
|
||||
MainWindow.xaml;
|
||||
|
||||
False
|
||||
|
||||
20
filezamena/obj/Release/filezamena_MarkupCompile.i.cache
Normal file
20
filezamena/obj/Release/filezamena_MarkupCompile.i.cache
Normal file
@@ -0,0 +1,20 @@
|
||||
filezamena
|
||||
|
||||
|
||||
winexe
|
||||
C#
|
||||
.cs
|
||||
F:\C#\filezamena\filezamena\obj\Release\
|
||||
filezamena
|
||||
none
|
||||
false
|
||||
TRACE
|
||||
F:\C#\filezamena\filezamena\App.xaml
|
||||
11151548125
|
||||
|
||||
61199641962
|
||||
141183416626
|
||||
MainWindow.xaml;
|
||||
|
||||
True
|
||||
|
||||
4
filezamena/obj/Release/filezamena_MarkupCompile.i.lref
Normal file
4
filezamena/obj/Release/filezamena_MarkupCompile.i.lref
Normal file
@@ -0,0 +1,4 @@
|
||||
|
||||
|
||||
FF:\C#\filezamena\filezamena\MainWindow.xaml;;
|
||||
|
||||
4
filezamena/obj/Release/filezamena_MarkupCompile.lref
Normal file
4
filezamena/obj/Release/filezamena_MarkupCompile.lref
Normal file
@@ -0,0 +1,4 @@
|
||||
|
||||
|
||||
FF:\C#\filezamena\filezamena\MainWindow.xaml;;
|
||||
|
||||
70
filezamena/obj/x86/Release/App.g.cs
Normal file
70
filezamena/obj/x86/Release/App.g.cs
Normal file
@@ -0,0 +1,70 @@
|
||||
#pragma checksum "..\..\..\App.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "F51EC6374F5A0C43807EACF8CEBFB75BB97421EAE24474A0E07C276F674A71B1"
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// Этот код создан программой.
|
||||
// Исполняемая версия:4.0.30319.42000
|
||||
//
|
||||
// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае
|
||||
// повторной генерации кода.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Diagnostics;
|
||||
using System.Windows;
|
||||
using System.Windows.Automation;
|
||||
using System.Windows.Controls;
|
||||
using System.Windows.Controls.Primitives;
|
||||
using System.Windows.Data;
|
||||
using System.Windows.Documents;
|
||||
using System.Windows.Ink;
|
||||
using System.Windows.Input;
|
||||
using System.Windows.Markup;
|
||||
using System.Windows.Media;
|
||||
using System.Windows.Media.Animation;
|
||||
using System.Windows.Media.Effects;
|
||||
using System.Windows.Media.Imaging;
|
||||
using System.Windows.Media.Media3D;
|
||||
using System.Windows.Media.TextFormatting;
|
||||
using System.Windows.Navigation;
|
||||
using System.Windows.Shapes;
|
||||
using System.Windows.Shell;
|
||||
using filezamena;
|
||||
|
||||
|
||||
namespace filezamena {
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// App
|
||||
/// </summary>
|
||||
public partial class App : System.Windows.Application {
|
||||
|
||||
/// <summary>
|
||||
/// InitializeComponent
|
||||
/// </summary>
|
||||
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
|
||||
public void InitializeComponent() {
|
||||
|
||||
#line 5 "..\..\..\App.xaml"
|
||||
this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Application Entry Point.
|
||||
/// </summary>
|
||||
[System.STAThreadAttribute()]
|
||||
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
|
||||
public static void Main() {
|
||||
filezamena.App app = new filezamena.App();
|
||||
app.InitializeComponent();
|
||||
app.Run();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
70
filezamena/obj/x86/Release/App.g.i.cs
Normal file
70
filezamena/obj/x86/Release/App.g.i.cs
Normal file
@@ -0,0 +1,70 @@
|
||||
#pragma checksum "..\..\..\App.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "F51EC6374F5A0C43807EACF8CEBFB75BB97421EAE24474A0E07C276F674A71B1"
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// Этот код создан программой.
|
||||
// Исполняемая версия:4.0.30319.42000
|
||||
//
|
||||
// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае
|
||||
// повторной генерации кода.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Diagnostics;
|
||||
using System.Windows;
|
||||
using System.Windows.Automation;
|
||||
using System.Windows.Controls;
|
||||
using System.Windows.Controls.Primitives;
|
||||
using System.Windows.Data;
|
||||
using System.Windows.Documents;
|
||||
using System.Windows.Ink;
|
||||
using System.Windows.Input;
|
||||
using System.Windows.Markup;
|
||||
using System.Windows.Media;
|
||||
using System.Windows.Media.Animation;
|
||||
using System.Windows.Media.Effects;
|
||||
using System.Windows.Media.Imaging;
|
||||
using System.Windows.Media.Media3D;
|
||||
using System.Windows.Media.TextFormatting;
|
||||
using System.Windows.Navigation;
|
||||
using System.Windows.Shapes;
|
||||
using System.Windows.Shell;
|
||||
using filezamena;
|
||||
|
||||
|
||||
namespace filezamena {
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// App
|
||||
/// </summary>
|
||||
public partial class App : System.Windows.Application {
|
||||
|
||||
/// <summary>
|
||||
/// InitializeComponent
|
||||
/// </summary>
|
||||
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
|
||||
public void InitializeComponent() {
|
||||
|
||||
#line 5 "..\..\..\App.xaml"
|
||||
this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Application Entry Point.
|
||||
/// </summary>
|
||||
[System.STAThreadAttribute()]
|
||||
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
|
||||
public static void Main() {
|
||||
filezamena.App app = new filezamena.App();
|
||||
app.InitializeComponent();
|
||||
app.Run();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Binary file not shown.
BIN
filezamena/obj/x86/Release/MainWindow.baml
Normal file
BIN
filezamena/obj/x86/Release/MainWindow.baml
Normal file
Binary file not shown.
150
filezamena/obj/x86/Release/MainWindow.g.cs
Normal file
150
filezamena/obj/x86/Release/MainWindow.g.cs
Normal file
@@ -0,0 +1,150 @@
|
||||
#pragma checksum "..\..\..\MainWindow.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "51D7527179E88F2000654A46607E1C88602525F89F72A35AD2836E2D34458326"
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// Этот код создан программой.
|
||||
// Исполняемая версия:4.0.30319.42000
|
||||
//
|
||||
// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае
|
||||
// повторной генерации кода.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Diagnostics;
|
||||
using System.Windows;
|
||||
using System.Windows.Automation;
|
||||
using System.Windows.Controls;
|
||||
using System.Windows.Controls.Primitives;
|
||||
using System.Windows.Data;
|
||||
using System.Windows.Documents;
|
||||
using System.Windows.Ink;
|
||||
using System.Windows.Input;
|
||||
using System.Windows.Markup;
|
||||
using System.Windows.Media;
|
||||
using System.Windows.Media.Animation;
|
||||
using System.Windows.Media.Effects;
|
||||
using System.Windows.Media.Imaging;
|
||||
using System.Windows.Media.Media3D;
|
||||
using System.Windows.Media.TextFormatting;
|
||||
using System.Windows.Navigation;
|
||||
using System.Windows.Shapes;
|
||||
using System.Windows.Shell;
|
||||
using filezamena;
|
||||
|
||||
|
||||
namespace filezamena {
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// MainWindow
|
||||
/// </summary>
|
||||
public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
|
||||
|
||||
|
||||
#line 17 "..\..\..\MainWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.Button Start;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 40 "..\..\..\MainWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.TextBox modname;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 55 "..\..\..\MainWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.TextBox Foldername;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 70 "..\..\..\MainWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.ProgressBar Progressbar;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 81 "..\..\..\MainWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.Label End;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 103 "..\..\..\MainWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.CheckBox DLLCheck;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
private bool _contentLoaded;
|
||||
|
||||
/// <summary>
|
||||
/// InitializeComponent
|
||||
/// </summary>
|
||||
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
|
||||
public void InitializeComponent() {
|
||||
if (_contentLoaded) {
|
||||
return;
|
||||
}
|
||||
_contentLoaded = true;
|
||||
System.Uri resourceLocater = new System.Uri("/filezamena;component/mainwindow.xaml", System.UriKind.Relative);
|
||||
|
||||
#line 1 "..\..\..\MainWindow.xaml"
|
||||
System.Windows.Application.LoadComponent(this, resourceLocater);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
}
|
||||
|
||||
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
|
||||
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
|
||||
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
|
||||
switch (connectionId)
|
||||
{
|
||||
case 1:
|
||||
this.Start = ((System.Windows.Controls.Button)(target));
|
||||
|
||||
#line 24 "..\..\..\MainWindow.xaml"
|
||||
this.Start.Click += new System.Windows.RoutedEventHandler(this.Button_Click);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
return;
|
||||
case 2:
|
||||
this.modname = ((System.Windows.Controls.TextBox)(target));
|
||||
return;
|
||||
case 3:
|
||||
this.Foldername = ((System.Windows.Controls.TextBox)(target));
|
||||
return;
|
||||
case 4:
|
||||
this.Progressbar = ((System.Windows.Controls.ProgressBar)(target));
|
||||
return;
|
||||
case 5:
|
||||
this.End = ((System.Windows.Controls.Label)(target));
|
||||
return;
|
||||
case 6:
|
||||
this.DLLCheck = ((System.Windows.Controls.CheckBox)(target));
|
||||
return;
|
||||
}
|
||||
this._contentLoaded = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
150
filezamena/obj/x86/Release/MainWindow.g.i.cs
Normal file
150
filezamena/obj/x86/Release/MainWindow.g.i.cs
Normal file
@@ -0,0 +1,150 @@
|
||||
#pragma checksum "..\..\..\MainWindow.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "51D7527179E88F2000654A46607E1C88602525F89F72A35AD2836E2D34458326"
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// Этот код создан программой.
|
||||
// Исполняемая версия:4.0.30319.42000
|
||||
//
|
||||
// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае
|
||||
// повторной генерации кода.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Diagnostics;
|
||||
using System.Windows;
|
||||
using System.Windows.Automation;
|
||||
using System.Windows.Controls;
|
||||
using System.Windows.Controls.Primitives;
|
||||
using System.Windows.Data;
|
||||
using System.Windows.Documents;
|
||||
using System.Windows.Ink;
|
||||
using System.Windows.Input;
|
||||
using System.Windows.Markup;
|
||||
using System.Windows.Media;
|
||||
using System.Windows.Media.Animation;
|
||||
using System.Windows.Media.Effects;
|
||||
using System.Windows.Media.Imaging;
|
||||
using System.Windows.Media.Media3D;
|
||||
using System.Windows.Media.TextFormatting;
|
||||
using System.Windows.Navigation;
|
||||
using System.Windows.Shapes;
|
||||
using System.Windows.Shell;
|
||||
using filezamena;
|
||||
|
||||
|
||||
namespace filezamena {
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// MainWindow
|
||||
/// </summary>
|
||||
public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
|
||||
|
||||
|
||||
#line 17 "..\..\..\MainWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.Button Start;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 40 "..\..\..\MainWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.TextBox modname;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 55 "..\..\..\MainWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.TextBox Foldername;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 70 "..\..\..\MainWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.ProgressBar Progressbar;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 81 "..\..\..\MainWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.Label End;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
|
||||
#line 103 "..\..\..\MainWindow.xaml"
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||
internal System.Windows.Controls.CheckBox DLLCheck;
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
|
||||
private bool _contentLoaded;
|
||||
|
||||
/// <summary>
|
||||
/// InitializeComponent
|
||||
/// </summary>
|
||||
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
|
||||
public void InitializeComponent() {
|
||||
if (_contentLoaded) {
|
||||
return;
|
||||
}
|
||||
_contentLoaded = true;
|
||||
System.Uri resourceLocater = new System.Uri("/filezamena;component/mainwindow.xaml", System.UriKind.Relative);
|
||||
|
||||
#line 1 "..\..\..\MainWindow.xaml"
|
||||
System.Windows.Application.LoadComponent(this, resourceLocater);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
}
|
||||
|
||||
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
|
||||
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
|
||||
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
|
||||
switch (connectionId)
|
||||
{
|
||||
case 1:
|
||||
this.Start = ((System.Windows.Controls.Button)(target));
|
||||
|
||||
#line 24 "..\..\..\MainWindow.xaml"
|
||||
this.Start.Click += new System.Windows.RoutedEventHandler(this.Button_Click);
|
||||
|
||||
#line default
|
||||
#line hidden
|
||||
return;
|
||||
case 2:
|
||||
this.modname = ((System.Windows.Controls.TextBox)(target));
|
||||
return;
|
||||
case 3:
|
||||
this.Foldername = ((System.Windows.Controls.TextBox)(target));
|
||||
return;
|
||||
case 4:
|
||||
this.Progressbar = ((System.Windows.Controls.ProgressBar)(target));
|
||||
return;
|
||||
case 5:
|
||||
this.End = ((System.Windows.Controls.Label)(target));
|
||||
return;
|
||||
case 6:
|
||||
this.DLLCheck = ((System.Windows.Controls.CheckBox)(target));
|
||||
return;
|
||||
}
|
||||
this._contentLoaded = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1 @@
|
||||
03a69a6a0d7f7cac764d6c1497d5caad08d1507b
|
||||
@@ -0,0 +1,15 @@
|
||||
F:\C#\filezamena\filezamena\bin\x86\Release\filezamena.exe.config
|
||||
F:\C#\filezamena\filezamena\bin\x86\Release\filezamena.exe
|
||||
F:\C#\filezamena\filezamena\bin\x86\Release\filezamena.pdb
|
||||
F:\C#\filezamena\filezamena\obj\x86\Release\filezamena.csprojAssemblyReference.cache
|
||||
F:\C#\filezamena\filezamena\obj\x86\Release\MainWindow.g.cs
|
||||
F:\C#\filezamena\filezamena\obj\x86\Release\App.g.cs
|
||||
F:\C#\filezamena\filezamena\obj\x86\Release\filezamena_MarkupCompile.cache
|
||||
F:\C#\filezamena\filezamena\obj\x86\Release\filezamena_MarkupCompile.lref
|
||||
F:\C#\filezamena\filezamena\obj\x86\Release\MainWindow.baml
|
||||
F:\C#\filezamena\filezamena\obj\x86\Release\filezamena.g.resources
|
||||
F:\C#\filezamena\filezamena\obj\x86\Release\filezamena.Properties.Resources.resources
|
||||
F:\C#\filezamena\filezamena\obj\x86\Release\filezamena.csproj.GenerateResource.cache
|
||||
F:\C#\filezamena\filezamena\obj\x86\Release\filezamena.csproj.CoreCompileInputs.cache
|
||||
F:\C#\filezamena\filezamena\obj\x86\Release\filezamena.exe
|
||||
F:\C#\filezamena\filezamena\obj\x86\Release\filezamena.pdb
|
||||
Binary file not shown.
Binary file not shown.
BIN
filezamena/obj/x86/Release/filezamena.exe
Normal file
BIN
filezamena/obj/x86/Release/filezamena.exe
Normal file
Binary file not shown.
BIN
filezamena/obj/x86/Release/filezamena.g.resources
Normal file
BIN
filezamena/obj/x86/Release/filezamena.g.resources
Normal file
Binary file not shown.
BIN
filezamena/obj/x86/Release/filezamena.pdb
Normal file
BIN
filezamena/obj/x86/Release/filezamena.pdb
Normal file
Binary file not shown.
20
filezamena/obj/x86/Release/filezamena_MarkupCompile.cache
Normal file
20
filezamena/obj/x86/Release/filezamena_MarkupCompile.cache
Normal file
@@ -0,0 +1,20 @@
|
||||
filezamena
|
||||
|
||||
|
||||
winexe
|
||||
C#
|
||||
.cs
|
||||
F:\C#\filezamena\filezamena\obj\x86\Release\
|
||||
filezamena
|
||||
none
|
||||
false
|
||||
TRACE
|
||||
F:\C#\filezamena\filezamena\App.xaml
|
||||
11151548125
|
||||
|
||||
5-2017746502
|
||||
141183416626
|
||||
MainWindow.xaml;
|
||||
|
||||
False
|
||||
|
||||
20
filezamena/obj/x86/Release/filezamena_MarkupCompile.i.cache
Normal file
20
filezamena/obj/x86/Release/filezamena_MarkupCompile.i.cache
Normal file
@@ -0,0 +1,20 @@
|
||||
filezamena
|
||||
|
||||
|
||||
winexe
|
||||
C#
|
||||
.cs
|
||||
F:\C#\filezamena\filezamena\obj\x86\Release\
|
||||
filezamena
|
||||
none
|
||||
false
|
||||
TRACE
|
||||
F:\C#\filezamena\filezamena\App.xaml
|
||||
11151548125
|
||||
|
||||
6-431165905
|
||||
141183416626
|
||||
MainWindow.xaml;
|
||||
|
||||
True
|
||||
|
||||
@@ -0,0 +1,4 @@
|
||||
|
||||
|
||||
FF:\C#\filezamena\filezamena\MainWindow.xaml;;
|
||||
|
||||
4
filezamena/obj/x86/Release/filezamena_MarkupCompile.lref
Normal file
4
filezamena/obj/x86/Release/filezamena_MarkupCompile.lref
Normal file
@@ -0,0 +1,4 @@
|
||||
|
||||
|
||||
FF:\C#\filezamena\filezamena\MainWindow.xaml;;
|
||||
|
||||
Reference in New Issue
Block a user