mirror of
https://github.com/eliasstepanik/NicepageToBlazorConverter.git
synced 2026-01-11 21:58:30 +00:00
Initial commit
This commit is contained in:
commit
84e6a91dc4
5
.gitignore
vendored
Normal file
5
.gitignore
vendored
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
bin/
|
||||||
|
obj/
|
||||||
|
/packages/
|
||||||
|
riderModule.iml
|
||||||
|
/_ReSharper.Caches/
|
||||||
16
NTOB.sln
Normal file
16
NTOB.sln
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
|
||||||
|
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||||
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NTOB", "NTOB\NTOB.csproj", "{B79FD579-C53E-4B69-8A13-5FCCFF68836E}"
|
||||||
|
EndProject
|
||||||
|
Global
|
||||||
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
|
Debug|Any CPU = Debug|Any CPU
|
||||||
|
Release|Any CPU = Release|Any CPU
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||||
|
{B79FD579-C53E-4B69-8A13-5FCCFF68836E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{B79FD579-C53E-4B69-8A13-5FCCFF68836E}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{B79FD579-C53E-4B69-8A13-5FCCFF68836E}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{B79FD579-C53E-4B69-8A13-5FCCFF68836E}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
EndGlobalSection
|
||||||
|
EndGlobal
|
||||||
8
NTOB/NTOB.csproj
Normal file
8
NTOB/NTOB.csproj
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<OutputType>Exe</OutputType>
|
||||||
|
<TargetFramework>net5.0</TargetFramework>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
</Project>
|
||||||
12
NTOB/Program.cs
Normal file
12
NTOB/Program.cs
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
using System;
|
||||||
|
|
||||||
|
namespace NTOB
|
||||||
|
{
|
||||||
|
class Program
|
||||||
|
{
|
||||||
|
static void Main(string[] args)
|
||||||
|
{
|
||||||
|
Console.WriteLine("Hello World!");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
3
NTOB/appsettings.json
Normal file
3
NTOB/appsettings.json
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
7
NTOB/logic/BlazorPage.cs
Normal file
7
NTOB/logic/BlazorPage.cs
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
namespace NTOB.logic
|
||||||
|
{
|
||||||
|
public class BlazorPage
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
7
global.json
Normal file
7
global.json
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"sdk": {
|
||||||
|
"version": "5.0",
|
||||||
|
"rollForward": "latestMajor",
|
||||||
|
"allowPrerelease": false
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user