SongWJ 6 months ago
commit e90cbb97da

8
.gitignore vendored

@ -0,0 +1,8 @@
.vs/
.idea/
bin/
obj/
*.user

@ -0,0 +1,25 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.9.34723.18
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "STranslateDLL", "STranslateDLL\STranslateDLL.csproj", "{6D9BB175-EF05-485B-9CE1-CBFADDB2DC0C}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{6D9BB175-EF05-485B-9CE1-CBFADDB2DC0C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{6D9BB175-EF05-485B-9CE1-CBFADDB2DC0C}.Debug|Any CPU.Build.0 = Debug|Any CPU
{6D9BB175-EF05-485B-9CE1-CBFADDB2DC0C}.Release|Any CPU.ActiveCfg = Release|Any CPU
{6D9BB175-EF05-485B-9CE1-CBFADDB2DC0C}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {BF77AE8D-28CF-4C94-A0E5-E371B567BD9F}
EndGlobalSection
EndGlobal

@ -0,0 +1,9 @@
namespace STranslateDLL;
public class LocalMode
{
public async Task ExecuteAsync()
{
await Task.Delay(3000);
}
}

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
https://go.microsoft.com/fwlink/?LinkID=208121.
-->
<Project>
<PropertyGroup>
<Configuration>Release</Configuration>
<Platform>Any CPU</Platform>
<PublishDir>bin\Release\net8.0\publish\win-x64\</PublishDir>
<PublishProtocol>FileSystem</PublishProtocol>
<_TargetId>Folder</_TargetId>
<TargetFramework>net8.0</TargetFramework>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<SelfContained>false</SelfContained>
<PublishSingleFile>false</PublishSingleFile>
<PublishReadyToRun>false</PublishReadyToRun>
</PropertyGroup>
</Project>

@ -0,0 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<PublishAot>true</PublishAot>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DebugType>none</DebugType>
</PropertyGroup>
</Project>
Loading…
Cancel
Save