添加项目文件。

This commit is contained in:
Chenx221 2024-03-12 13:15:46 +08:00
parent 709239ce98
commit a04b4cab5a
3 changed files with 37 additions and 0 deletions

25
vault-decryptFile.sln Normal file
View File

@ -0,0 +1,25 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.9.34622.214
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "vault-decryptFile", "vault-decryptFile\vault-decryptFile.csproj", "{A5DE32CA-0B0A-4978-AD35-175E3DC947DF}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{A5DE32CA-0B0A-4978-AD35-175E3DC947DF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{A5DE32CA-0B0A-4978-AD35-175E3DC947DF}.Debug|Any CPU.Build.0 = Debug|Any CPU
{A5DE32CA-0B0A-4978-AD35-175E3DC947DF}.Release|Any CPU.ActiveCfg = Release|Any CPU
{A5DE32CA-0B0A-4978-AD35-175E3DC947DF}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {A78A883B-C418-449A-AD5D-77B36EE15497}
EndGlobalSection
EndGlobal

View File

@ -0,0 +1 @@
Console.WriteLine("Hello, World!");

View File

@ -0,0 +1,11 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<RootNamespace>vault_decryptFile</RootNamespace>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>