Skip to content

Commit

Permalink
Add project files.
Browse files Browse the repository at this point in the history
  • Loading branch information
Bartmax committed Feb 11, 2020
1 parent 06c430d commit 2fc4c08
Show file tree
Hide file tree
Showing 5 changed files with 57 additions and 0 deletions.
25 changes: 25 additions & 0 deletions Youtube.Music.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.29721.120
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Youtube.Music", "Youtube.Music\Youtube.Music.csproj", "{9DC4FD94-453B-43C5-9A48-E553D63AD666}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{9DC4FD94-453B-43C5-9A48-E553D63AD666}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{9DC4FD94-453B-43C5-9A48-E553D63AD666}.Debug|Any CPU.Build.0 = Debug|Any CPU
{9DC4FD94-453B-43C5-9A48-E553D63AD666}.Release|Any CPU.ActiveCfg = Release|Any CPU
{9DC4FD94-453B-43C5-9A48-E553D63AD666}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {42366192-13B4-4888-AB6D-7E79D1F30EA1}
EndGlobalSection
EndGlobal
15 changes: 15 additions & 0 deletions Youtube.Music/Program.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
using System;
using WebWindows;

namespace Youtube.Music
{
class Program
{
static void Main(string[] args)
{
var window = new WebWindow("Youtube Music");
window.NavigateToUrl("https://music.youtube.com");
window.WaitForExit();
}
}
}
17 changes: 17 additions & 0 deletions Youtube.Music/Youtube.Music.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<PackageIcon>youtube_socialnetwork_19998.png</PackageIcon>
<ApplicationIcon>youtube_socialnetwork_19998.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="WebWindow" Version="0.1.0-20191120.6" />
</ItemGroup>
<ItemGroup>
<None Include="youtube_socialnetwork_19998.png">
<Pack>True</Pack>
</None>
</ItemGroup>
</Project>
Binary file added Youtube.Music/youtube_socialnetwork_19998.ico
Binary file not shown.
Binary file added Youtube.Music/youtube_socialnetwork_19998.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 2fc4c08

Please sign in to comment.