Compare commits

...

10 Commits

Author SHA1 Message Date
Michael Nolan f4f7a1d9fd Update README.md 2021-12-20 00:02:03 +00:00
Michael Nolan 505b5195ae Update README.md 2021-12-20 00:01:13 +00:00
Michael Nolan 0021bf0758 Update README.md 2021-12-20 00:00:48 +00:00
Michael Nolan f4baf38aac Update README.md 2021-12-20 00:00:18 +00:00
Michael Nolan c823eb0086 Add new directory 2021-12-19 23:56:24 +00:00
Michael Nolan 90d173fff3 Add new directory 2021-12-19 23:56:13 +00:00
Michael Nolan b55e100420 Delete .gitkeep 2021-12-19 23:55:57 +00:00
Michael Nolan 40e33d1ff4 Add new directory 2021-12-19 23:55:30 +00:00
Michael Nolan 259b420eb9 Upload New File 2021-12-19 23:55:15 +00:00
Michael Nolan d07ac384b8 Upload New File 2021-12-19 23:54:54 +00:00
5 changed files with 63 additions and 1 deletions

View File

@ -1,3 +1,16 @@
# TYTD Installer
Install Tesses YouTube Downloader
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
bin/.gitkeep Normal file
View File

0
obj/.gitkeep Normal file
View File

View File

@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="SharpZipLib" version="1.3.3" targetFramework="net47" />
</packages>

View File

@ -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>