Compare commits
10 Commits
401ca386e1
...
f4f7a1d9fd
Author | SHA1 | Date |
---|---|---|
Michael Nolan | f4f7a1d9fd | |
Michael Nolan | 505b5195ae | |
Michael Nolan | 0021bf0758 | |
Michael Nolan | f4baf38aac | |
Michael Nolan | c823eb0086 | |
Michael Nolan | 90d173fff3 | |
Michael Nolan | b55e100420 | |
Michael Nolan | 40e33d1ff4 | |
Michael Nolan | 259b420eb9 | |
Michael Nolan | d07ac384b8 |
13
README.md
13
README.md
|
@ -1,3 +1,16 @@
|
|||
# TYTD Installer
|
||||
|
||||
Install Tesses YouTube Downloader
|
||||
|
||||
[Standalone Installer](https://downloads.tesses.cf/apps/tytd/tytd-installer-standalone.zip)
|
||||
<br>
|
||||
[Most Up to date Installer](https://downloads.tesses.cf/apps/tytd/tytd-installer.zip)
|
||||
|
||||
|
||||
## On Linux
|
||||
- Extract zip file
|
||||
- `mono tytd-setup.exe`
|
||||
|
||||
## On Windows
|
||||
- Extract zip file
|
||||
- Double click tytd-setup.exe
|
||||
|
|
|
@ -0,0 +1,4 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<packages>
|
||||
<package id="SharpZipLib" version="1.3.3" targetFramework="net47" />
|
||||
</packages>
|
|
@ -0,0 +1,45 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
|
||||
<ProjectGuid>{C787735A-D872-4AE1-8407-317104887889}</ProjectGuid>
|
||||
<OutputType>Exe</OutputType>
|
||||
<RootNamespace>tytdsetup</RootNamespace>
|
||||
<AssemblyName>tytd-setup</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.7</TargetFrameworkVersion>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\Debug</OutputPath>
|
||||
<DefineConstants>DEBUG;</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<ExternalConsole>true</ExternalConsole>
|
||||
<PlatformTarget>x86</PlatformTarget>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release</OutputPath>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<ExternalConsole>true</ExternalConsole>
|
||||
<PlatformTarget>x86</PlatformTarget>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="ICSharpCode.SharpZipLib">
|
||||
<HintPath>..\packages\SharpZipLib.1.3.3\lib\net45\ICSharpCode.SharpZipLib.dll</HintPath>
|
||||
</Reference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="Program.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="packages.config" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
|
||||
</Project>
|
Loading…
Reference in New Issue