Skip to content

Commit 6cece2f

Browse files
committed
chore: move UninstallTemplate project to DevopUtils solution
1 parent e746617 commit 6cece2f

13 files changed

+91
-33
lines changed

devops/generate-devops-utils.cmd

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ if %ERRORLEVEL% NEQ 0 (
1010
goto EXIT
1111
)
1212

13-
cd ..\utils\UninstallTemplate
13+
cd ..\utils\DevopUtils
1414

1515
dotnet publish -c release -o ..\..\devops\%utils%
1616

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"runtimeTarget": {
3+
"name": ".NETCoreApp,Version=v3.1",
4+
"signature": ""
5+
},
6+
"compilationOptions": {},
7+
"targets": {
8+
".NETCoreApp,Version=v3.1": {
9+
"SetPackageVersion/1.0.0": {
10+
"runtime": {
11+
"SetPackageVersion.dll": {}
12+
}
13+
}
14+
}
15+
},
16+
"libraries": {
17+
"SetPackageVersion/1.0.0": {
18+
"type": "project",
19+
"serviceable": false,
20+
"sha512": ""
21+
}
22+
}
23+
}

devops/utils/SetPackageVersion.dll

4.5 KB
Binary file not shown.

devops/utils/SetPackageVersion.exe

166 KB
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"runtimeOptions": {
3+
"tfm": "netcoreapp3.1",
4+
"framework": {
5+
"name": "Microsoft.NETCore.App",
6+
"version": "3.1.0"
7+
}
8+
}
9+
}

devops/utils/UninstallTemplate.dll

0 Bytes
Binary file not shown.

utils/DevopUtils/DevopUtils.sln

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 16
4+
VisualStudioVersion = 16.0.30114.105
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SetPackageVersion", "SetPackageVersion\SetPackageVersion.csproj", "{C8ADC3EF-E781-4D5B-8850-A26BD62380C9}"
7+
EndProject
8+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "UninstallTemplate", "UninstallTemplate\UninstallTemplate.csproj", "{7A066E74-348A-4BCC-8FF9-7F070750EA7C}"
9+
EndProject
10+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Common.Infra", "..\..\common\Common.Infra\Common.Infra.csproj", "{12941FEC-F4D5-4C73-86AC-C4C7F523ADB4}"
11+
EndProject
12+
Global
13+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
14+
Debug|Any CPU = Debug|Any CPU
15+
Release|Any CPU = Release|Any CPU
16+
EndGlobalSection
17+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
18+
{C8ADC3EF-E781-4D5B-8850-A26BD62380C9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
19+
{C8ADC3EF-E781-4D5B-8850-A26BD62380C9}.Debug|Any CPU.Build.0 = Debug|Any CPU
20+
{C8ADC3EF-E781-4D5B-8850-A26BD62380C9}.Release|Any CPU.ActiveCfg = Release|Any CPU
21+
{C8ADC3EF-E781-4D5B-8850-A26BD62380C9}.Release|Any CPU.Build.0 = Release|Any CPU
22+
{7A066E74-348A-4BCC-8FF9-7F070750EA7C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
23+
{7A066E74-348A-4BCC-8FF9-7F070750EA7C}.Debug|Any CPU.Build.0 = Debug|Any CPU
24+
{7A066E74-348A-4BCC-8FF9-7F070750EA7C}.Release|Any CPU.ActiveCfg = Release|Any CPU
25+
{7A066E74-348A-4BCC-8FF9-7F070750EA7C}.Release|Any CPU.Build.0 = Release|Any CPU
26+
{12941FEC-F4D5-4C73-86AC-C4C7F523ADB4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
27+
{12941FEC-F4D5-4C73-86AC-C4C7F523ADB4}.Debug|Any CPU.Build.0 = Debug|Any CPU
28+
{12941FEC-F4D5-4C73-86AC-C4C7F523ADB4}.Release|Any CPU.ActiveCfg = Release|Any CPU
29+
{12941FEC-F4D5-4C73-86AC-C4C7F523ADB4}.Release|Any CPU.Build.0 = Release|Any CPU
30+
EndGlobalSection
31+
GlobalSection(SolutionProperties) = preSolution
32+
HideSolutionNode = FALSE
33+
EndGlobalSection
34+
GlobalSection(ExtensibilityGlobals) = postSolution
35+
SolutionGuid = {94F23C44-43F5-4FA2-90BA-2DF79F1F34A2}
36+
EndGlobalSection
37+
EndGlobal
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
using System;
2+
3+
namespace SetPackageVersion
4+
{
5+
class Program
6+
{
7+
static void Main(string[] args)
8+
{
9+
Console.WriteLine("Hello World!");
10+
}
11+
}
12+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<OutputType>Exe</OutputType>
5+
<TargetFramework>netcoreapp3.1</TargetFramework>
6+
</PropertyGroup>
7+
8+
</Project>

utils/UninstallTemplate/UninstallTemplate.csproj utils/DevopUtils/UninstallTemplate/UninstallTemplate.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
</ItemGroup>
1717

1818
<ItemGroup>
19-
<ProjectReference Include="..\..\common\Common.Infra\Common.Infra.csproj" />
19+
<ProjectReference Include="..\..\..\common\Common.Infra\Common.Infra.csproj" />
2020
</ItemGroup>
2121

2222
</Project>

utils/UninstallTemplate/UninstallTemplate.sln

-31
This file was deleted.

0 commit comments

Comments
 (0)