Projektdateien hinzufügen.
This commit is contained in:
parent
7983a2dc07
commit
6d9bbef54d
3 changed files with 45 additions and 0 deletions
25
SynologyCertificateExporter.sln
Normal file
25
SynologyCertificateExporter.sln
Normal file
|
@ -0,0 +1,25 @@
|
|||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio Version 16
|
||||
VisualStudioVersion = 16.0.31727.386
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SynologyCertificateExporter", "SynologyCertificateExporter\SynologyCertificateExporter.csproj", "{D34C408E-FF98-4AB3-BAC6-8B92965D84BA}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
Release|Any CPU = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{D34C408E-FF98-4AB3-BAC6-8B92965D84BA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{D34C408E-FF98-4AB3-BAC6-8B92965D84BA}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{D34C408E-FF98-4AB3-BAC6-8B92965D84BA}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{D34C408E-FF98-4AB3-BAC6-8B92965D84BA}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||
SolutionGuid = {38CCB27C-7332-4A4F-A8C0-78C76B23A8DA}
|
||||
EndGlobalSection
|
||||
EndGlobal
|
12
SynologyCertificateExporter/Program.cs
Normal file
12
SynologyCertificateExporter/Program.cs
Normal file
|
@ -0,0 +1,12 @@
|
|||
using System;
|
||||
|
||||
namespace SynologyCertificateExporter
|
||||
{
|
||||
class Program
|
||||
{
|
||||
static void Main(string[] args)
|
||||
{
|
||||
Console.WriteLine("Hello World!");
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>net5.0</TargetFramework>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
Loading…
Add table
Reference in a new issue