mirror of
https://github.com/JonnyBro/beatrun.git
synced 2025-01-31 12:07:27 +05:00
Rewrite AnimInstaller and put it in beatrun folder
This commit is contained in:
parent
3436b6db24
commit
5891336535
5 changed files with 13 additions and 6 deletions
4
.gitignore
vendored
4
.gitignore
vendored
|
@ -1,5 +1,3 @@
|
|||
*.pdb
|
||||
*.cache
|
||||
.vs
|
||||
obj
|
||||
bin
|
||||
bin
|
|
@ -19,7 +19,7 @@ namespace BeatrunAnimInstaller
|
|||
{
|
||||
string fileName = Path.GetFileName(filePath);
|
||||
File.Copy(filePath, outputDir + Path.DirectorySeparatorChar + fileName, true);
|
||||
Console.WriteLine(string.Format("Copied {0}", filePath));
|
||||
Console.WriteLine(string.Format("Copied {0} to {1}", filePath, outputDir));
|
||||
}
|
||||
|
||||
foreach (string dirPath in Directory.GetDirectories(inputDir))
|
||||
|
@ -36,7 +36,7 @@ namespace BeatrunAnimInstaller
|
|||
int i = 1;
|
||||
foreach (string choice in choices)
|
||||
{
|
||||
Console.WriteLine(string.Format("{0}. {1}", i, choice));
|
||||
Console.WriteLine(string.Format("{0}: {1}", i, choice));
|
||||
i++;
|
||||
}
|
||||
Console.WriteLine("");
|
||||
|
|
|
@ -8,9 +8,10 @@
|
|||
<OutputType>Exe</OutputType>
|
||||
<RootNamespace>BeatrunAnimInstaller</RootNamespace>
|
||||
<AssemblyName>BeatrunAnimInstaller</AssemblyName>
|
||||
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
|
||||
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<Deterministic>true</Deterministic>
|
||||
<TargetFrameworkProfile />
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
|
@ -21,6 +22,7 @@
|
|||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<Prefer32Bit>false</Prefer32Bit>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
|
@ -30,6 +32,7 @@
|
|||
<DefineConstants>TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<Prefer32Bit>false</Prefer32Bit>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<StartupObject>BeatrunAnimInstaller.BeatrunAnimInstaller</StartupObject>
|
||||
|
@ -46,5 +49,8 @@
|
|||
<Compile Include="BeatrunAnimInstaller.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="app.config" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
</Project>
|
3
BeatrunAnimInstaller/app.config
Normal file
3
BeatrunAnimInstaller/app.config
Normal file
|
@ -0,0 +1,3 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<configuration>
|
||||
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8"/></startup></configuration>
|
BIN
beatrun/BeatrunAnimInstaller.exe
Normal file
BIN
beatrun/BeatrunAnimInstaller.exe
Normal file
Binary file not shown.
Loading…
Reference in a new issue