Youtube Video to Power Point Converter
git clone https://github.com/encryptedtouhid/YT2PPT.git
{
"Version": "1.4.0",
"AppCpde": "YT2PP",
"AppName": "Convert Youtube Video to PowerPoint",
"AppOwner": "Khaled Md Tuhidul Hossain",
"AppOwnerUrl": "https://tuhidulhossain.com",
"YouTubeApiKey": "[KEY]",
"ConnectionStrings": {
"DefaultConnection": "[DB CONNECTION STRING]"
},
"FreeLimit": "00:15:00",
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*",
"Serilog": {
"Using": [ "Serilog.Sinks.File", "Serilog.Sinks.MSSqlServer" ],
"MinimumLevel": {
"Default": "Error"
},
"WriteTo": [
{
"Name": "File",
"Args": {
"path": "[TEXT FILE NAME]",
"rollingInterval": "Day"
}
},
{
"Name": "MSSqlServer",
"Args": {
"connectionString": "[DB CONNECTION STRING]",
"tableName": "Logs",
"autoCreateSqlTable": true
}
}
]
}
}
Replace ~ with a relative path, such as ./ for the current directory or use the root-relative path if Electron has access to the root of the project. For example:
<script src="./lib/jquery/dist/jquery.min.js"></script>
<script src="./lib/bootstrap/dist/js/bootstrap.bundle.min.js"></script>
<script src="./js/site.js"></script>
Restore and Build the Application Navigate to your project directory:
cd D:\WorkStation\MyGitHub\YT2PPT\src\YT2PP.Web
Clean The project
dotnet clean
Build The project
dotnet build
Run Electron app
electronize start
Build the Application Build the project
dotnet build --configuration Release
Package with Electron.NET Use the Electron.NET CLI to publish the application
electronize build /target win
Open Visual Studio and build the project. It will restore all the nuget package needed.