进行一个实现
This commit is contained in:
parent
43447b89d7
commit
c4c80ad96d
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -9,6 +9,7 @@
|
|||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Cake.Powershell" Version="2.0.0" />
|
<PackageReference Include="Cake.Powershell" Version="2.0.0" />
|
||||||
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
6
AutoPull.csproj.user
Normal file
6
AutoPull.csproj.user
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<PropertyGroup>
|
||||||
|
<_LastSelectedProfileId>D:\AutoPull\Properties\PublishProfiles\FolderProfile.pubxml</_LastSelectedProfileId>
|
||||||
|
</PropertyGroup>
|
||||||
|
</Project>
|
31
Config.cs
Normal file
31
Config.cs
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
using Newtonsoft.Json;
|
||||||
|
using System.Text;
|
||||||
|
|
||||||
|
public class CfgInfo
|
||||||
|
{
|
||||||
|
public int IntervalMinute;
|
||||||
|
public string GitCMD;
|
||||||
|
public string[] paths;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static class Config
|
||||||
|
{
|
||||||
|
public static CfgInfo info;
|
||||||
|
public static bool LoadConfig()
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
StreamReader sr = new StreamReader(System.Environment.CurrentDirectory + "//config.cfg", Encoding.Default);
|
||||||
|
string cfgstr = sr.ReadToEnd();
|
||||||
|
sr.Close();
|
||||||
|
info = JsonConvert.DeserializeObject<CfgInfo>(cfgstr);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
Console.WriteLine("配置文件异常:" + ex.ToString());
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
88
GitUtility.cs
Normal file
88
GitUtility.cs
Normal file
@ -0,0 +1,88 @@
|
|||||||
|
using System.Diagnostics;
|
||||||
|
|
||||||
|
public class GitUtility
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// 获取环境git.ext的环境变量路径
|
||||||
|
/// </summary>
|
||||||
|
private static string strEnvironmentVariable
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
string strPath = System.Environment.GetEnvironmentVariable("Path");
|
||||||
|
if (string.IsNullOrEmpty(strPath))
|
||||||
|
{
|
||||||
|
Console.WriteLine(">>>>>strEnvironmentVariable: enviromentVariable is not config!!!!");
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
string[] strResults = strPath.Split(';');
|
||||||
|
for (int i = 0; i < strResults.Length; i++)
|
||||||
|
{
|
||||||
|
if (!strResults[i].Contains(@"Git\cmd"))
|
||||||
|
continue;
|
||||||
|
|
||||||
|
strPath = strResults[i];
|
||||||
|
}
|
||||||
|
|
||||||
|
return strPath;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
///
|
||||||
|
/// git工作路径
|
||||||
|
/// </summary>
|
||||||
|
private static string m_strWorkingDir;
|
||||||
|
public static string strWorkingDir
|
||||||
|
{
|
||||||
|
get { return m_strWorkingDir; }
|
||||||
|
set { m_strWorkingDir = value; }
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 执行git指令
|
||||||
|
/// </summary>
|
||||||
|
public static void ExcuteGitCommand(string strCommnad, DataReceivedEventHandler call)
|
||||||
|
{
|
||||||
|
string strGitPath = System.IO.Path.Combine(strEnvironmentVariable, "git.exe");
|
||||||
|
if (string.IsNullOrEmpty(strGitPath))
|
||||||
|
{
|
||||||
|
Console.WriteLine(">>>>>strEnvironmentVariable: enviromentVariable is not config!!!!");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
Process p = new Process();
|
||||||
|
p.StartInfo.FileName = strGitPath;
|
||||||
|
p.StartInfo.Arguments = strCommnad;
|
||||||
|
p.StartInfo.CreateNoWindow = true;
|
||||||
|
p.StartInfo.UseShellExecute = false;
|
||||||
|
p.StartInfo.RedirectStandardOutput = true;
|
||||||
|
p.StartInfo.WorkingDirectory = strWorkingDir;
|
||||||
|
|
||||||
|
p.OutputDataReceived += call;
|
||||||
|
p.OutputDataReceived -= OnOutputDataReceived;
|
||||||
|
p.OutputDataReceived += OnOutputDataReceived;
|
||||||
|
|
||||||
|
p.Start();
|
||||||
|
p.BeginOutputReadLine();
|
||||||
|
p.WaitForExit();
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 输出git指令执行结果
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="sender"></param>
|
||||||
|
/// <param name="e"></param>
|
||||||
|
private static void OnOutputDataReceived(object sender, DataReceivedEventArgs e)
|
||||||
|
{
|
||||||
|
if (null == e || string.IsNullOrEmpty(e.Data))
|
||||||
|
{
|
||||||
|
//Console.WriteLine("[Git]"+ e.Data);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
Console.WriteLine("[Git]" + e.Data);
|
||||||
|
}
|
||||||
|
}
|
11
LICENSE.txt
Normal file
11
LICENSE.txt
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
|
||||||
|
Version 2, December 2004
|
||||||
|
|
||||||
|
Copyright (C) 2004 Sam Hocevar <sam@hocevar.net>
|
||||||
|
|
||||||
|
Everyone is permitted to copy and distribute verbatim or modified copies of this license document, and changing it is allowed as long as the name is changed.
|
||||||
|
|
||||||
|
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
|
||||||
|
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
||||||
|
|
||||||
|
0. You just DO WHAT THE FUCK YOU WANT TO.
|
42
Program.cs
42
Program.cs
@ -1,6 +1,38 @@
|
|||||||
// See https://aka.ms/new-console-template for more information
|
using System.Timers;
|
||||||
using System;
|
|
||||||
using System.Collections.ObjectModel;
|
|
||||||
using System.Diagnostics;
|
|
||||||
|
|
||||||
string str = "git status";
|
if (!Config.LoadConfig())
|
||||||
|
{
|
||||||
|
Console.WriteLine("配置异常,任意键结束……");
|
||||||
|
Console.ReadLine();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (Config.info.paths.Length < 0)
|
||||||
|
{
|
||||||
|
Console.WriteLine("配置目录为空,任意键结束……");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
Console.WriteLine($"载入成功,间隔->{Config.info.IntervalMinute}分钟,git命令->{Config.info.GitCMD},目录->共{Config.info.paths.Length}个");
|
||||||
|
System.Timers.Timer taskTimer = new System.Timers.Timer();
|
||||||
|
taskTimer.Interval = 1000f * 60f * Config.info.IntervalMinute;
|
||||||
|
taskTimer.Elapsed += TimeEvent;
|
||||||
|
taskTimer.AutoReset = true;
|
||||||
|
taskTimer.Enabled = true;
|
||||||
|
Console.WriteLine($"启动完毕……");
|
||||||
|
|
||||||
|
while (true)
|
||||||
|
{
|
||||||
|
Console.ReadLine();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
static void TimeEvent(object source, ElapsedEventArgs e)
|
||||||
|
{
|
||||||
|
for (int i = 0; i < Config.info.paths.Length; i++)
|
||||||
|
{
|
||||||
|
Console.WriteLine("开始执行工作目录:->"+ Config.info.paths[i] + " 命令:" + Config.info.GitCMD);
|
||||||
|
GitUtility.strWorkingDir = Config.info.paths[i];
|
||||||
|
GitUtility.ExcuteGitCommand(Config.info.GitCMD, null);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
18
Properties/PublishProfiles/FolderProfile.pubxml
Normal file
18
Properties/PublishProfiles/FolderProfile.pubxml
Normal file
@ -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\net7.0\publish\win-x86\</PublishDir>
|
||||||
|
<PublishProtocol>FileSystem</PublishProtocol>
|
||||||
|
<_TargetId>Folder</_TargetId>
|
||||||
|
<TargetFramework>net7.0</TargetFramework>
|
||||||
|
<RuntimeIdentifier>win-x86</RuntimeIdentifier>
|
||||||
|
<SelfContained>false</SelfContained>
|
||||||
|
<PublishSingleFile>true</PublishSingleFile>
|
||||||
|
<PublishReadyToRun>false</PublishReadyToRun>
|
||||||
|
</PropertyGroup>
|
||||||
|
</Project>
|
10
Properties/PublishProfiles/FolderProfile.pubxml.user
Normal file
10
Properties/PublishProfiles/FolderProfile.pubxml.user
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--
|
||||||
|
https://go.microsoft.com/fwlink/?LinkID=208121.
|
||||||
|
-->
|
||||||
|
<Project>
|
||||||
|
<PropertyGroup>
|
||||||
|
<History>True|2023-02-20T13:00:04.9349542Z;False|2023-02-20T20:59:21.3900234+08:00;False|2023-02-20T20:58:59.4063620+08:00;False|2023-02-20T20:58:47.6525679+08:00;True|2023-02-20T20:56:24.3373602+08:00;True|2023-02-20T20:53:23.5027837+08:00;True|2023-02-20T20:52:38.1161507+08:00;</History>
|
||||||
|
<LastFailureDetails />
|
||||||
|
</PropertyGroup>
|
||||||
|
</Project>
|
24
README.md
Normal file
24
README.md
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
# AutoPull
|
||||||
|
|
||||||
|
自写定时执行git pull的工具 by axibug.com
|
||||||
|
|
||||||
|
TODO:
|
||||||
|
补充Linux版本
|
||||||
|
|
||||||
|
dotNet 版本: .Net 7.0.2
|
||||||
|
|
||||||
|
|
||||||
|
# 配置文件说明
|
||||||
|
|
||||||
|
同级目录下,创建config.cfg
|
||||||
|
|
||||||
|
内容范例如下:若配置一个 每间隔30分钟 用git pull命令拉取一次,D:/ABC目录和D:/123目录:
|
||||||
|
|
||||||
|
{
|
||||||
|
"IntervalMinute":30,
|
||||||
|
"GitCMD":"pull",
|
||||||
|
"paths":[
|
||||||
|
"D:/ABC",
|
||||||
|
"D:/123",
|
||||||
|
]
|
||||||
|
}
|
@ -1,17 +1,17 @@
|
|||||||
{
|
{
|
||||||
"format": 1,
|
"format": 1,
|
||||||
"restore": {
|
"restore": {
|
||||||
"F:\\Sin365\\AutoPull\\AutoPull.csproj": {}
|
"D:\\AutoPull\\AutoPull.csproj": {}
|
||||||
},
|
},
|
||||||
"projects": {
|
"projects": {
|
||||||
"F:\\Sin365\\AutoPull\\AutoPull.csproj": {
|
"D:\\AutoPull\\AutoPull.csproj": {
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"restore": {
|
"restore": {
|
||||||
"projectUniqueName": "F:\\Sin365\\AutoPull\\AutoPull.csproj",
|
"projectUniqueName": "D:\\AutoPull\\AutoPull.csproj",
|
||||||
"projectName": "AutoPull",
|
"projectName": "AutoPull",
|
||||||
"projectPath": "F:\\Sin365\\AutoPull\\AutoPull.csproj",
|
"projectPath": "D:\\AutoPull\\AutoPull.csproj",
|
||||||
"packagesPath": "C:\\Users\\35337\\.nuget\\packages\\",
|
"packagesPath": "C:\\Users\\35337\\.nuget\\packages\\",
|
||||||
"outputPath": "F:\\Sin365\\AutoPull\\obj\\",
|
"outputPath": "D:\\AutoPull\\obj\\",
|
||||||
"projectStyle": "PackageReference",
|
"projectStyle": "PackageReference",
|
||||||
"configFilePaths": [
|
"configFilePaths": [
|
||||||
"C:\\Users\\35337\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
"C:\\Users\\35337\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||||
@ -43,6 +43,10 @@
|
|||||||
"Cake.Powershell": {
|
"Cake.Powershell": {
|
||||||
"target": "Package",
|
"target": "Package",
|
||||||
"version": "[2.0.0, )"
|
"version": "[2.0.0, )"
|
||||||
|
},
|
||||||
|
"Newtonsoft.Json": {
|
||||||
|
"target": "Package",
|
||||||
|
"version": "[13.0.2, )"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"imports": [
|
"imports": [
|
||||||
@ -61,7 +65,7 @@
|
|||||||
"privateAssets": "all"
|
"privateAssets": "all"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.200\\RuntimeIdentifierGraph.json"
|
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.102\\RuntimeIdentifierGraph.json"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
23
obj/Debug/net7.0/AutoPull.AssemblyInfo.cs
Normal file
23
obj/Debug/net7.0/AutoPull.AssemblyInfo.cs
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// 此代码由工具生成。
|
||||||
|
// 运行时版本:4.0.30319.42000
|
||||||
|
//
|
||||||
|
// 对此文件的更改可能会导致不正确的行为,并且如果
|
||||||
|
// 重新生成代码,这些更改将会丢失。
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
using System;
|
||||||
|
using System.Reflection;
|
||||||
|
|
||||||
|
[assembly: System.Reflection.AssemblyCompanyAttribute("AutoPull")]
|
||||||
|
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||||
|
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||||
|
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||||
|
[assembly: System.Reflection.AssemblyProductAttribute("AutoPull")]
|
||||||
|
[assembly: System.Reflection.AssemblyTitleAttribute("AutoPull")]
|
||||||
|
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||||
|
|
||||||
|
// 由 MSBuild WriteCodeFragment 类生成。
|
||||||
|
|
1
obj/Debug/net7.0/AutoPull.AssemblyInfoInputs.cache
Normal file
1
obj/Debug/net7.0/AutoPull.AssemblyInfoInputs.cache
Normal file
@ -0,0 +1 @@
|
|||||||
|
a6445e410766b1e9baa9d68cfa358ed72081b7fd
|
@ -0,0 +1,11 @@
|
|||||||
|
is_global = true
|
||||||
|
build_property.TargetFramework = net7.0
|
||||||
|
build_property.TargetPlatformMinVersion =
|
||||||
|
build_property.UsingMicrosoftNETSdkWeb =
|
||||||
|
build_property.ProjectTypeGuids =
|
||||||
|
build_property.InvariantGlobalization =
|
||||||
|
build_property.PlatformNeutralAssembly =
|
||||||
|
build_property.EnforceExtendedAnalyzerRules =
|
||||||
|
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||||
|
build_property.RootNamespace = AutoPull
|
||||||
|
build_property.ProjectDir = D:\AutoPull\
|
Binary file not shown.
BIN
obj/Debug/net7.0/AutoPull.csproj.AssemblyReference.cache
Normal file
BIN
obj/Debug/net7.0/AutoPull.csproj.AssemblyReference.cache
Normal file
Binary file not shown.
Binary file not shown.
@ -0,0 +1,4 @@
|
|||||||
|
// <autogenerated />
|
||||||
|
using System;
|
||||||
|
using System.Reflection;
|
||||||
|
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v7.0", FrameworkDisplayName = ".NET 7.0")]
|
23
obj/Release/net7.0/AutoPull.AssemblyInfo.cs
Normal file
23
obj/Release/net7.0/AutoPull.AssemblyInfo.cs
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// 此代码由工具生成。
|
||||||
|
// 运行时版本:4.0.30319.42000
|
||||||
|
//
|
||||||
|
// 对此文件的更改可能会导致不正确的行为,并且如果
|
||||||
|
// 重新生成代码,这些更改将会丢失。
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
using System;
|
||||||
|
using System.Reflection;
|
||||||
|
|
||||||
|
[assembly: System.Reflection.AssemblyCompanyAttribute("AutoPull")]
|
||||||
|
[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
|
||||||
|
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||||
|
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||||
|
[assembly: System.Reflection.AssemblyProductAttribute("AutoPull")]
|
||||||
|
[assembly: System.Reflection.AssemblyTitleAttribute("AutoPull")]
|
||||||
|
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||||
|
|
||||||
|
// 由 MSBuild WriteCodeFragment 类生成。
|
||||||
|
|
1
obj/Release/net7.0/AutoPull.AssemblyInfoInputs.cache
Normal file
1
obj/Release/net7.0/AutoPull.AssemblyInfoInputs.cache
Normal file
@ -0,0 +1 @@
|
|||||||
|
e29fcb5ff662ce3780e0f0e0f5c860446abf2f56
|
@ -0,0 +1,11 @@
|
|||||||
|
is_global = true
|
||||||
|
build_property.TargetFramework = net7.0
|
||||||
|
build_property.TargetPlatformMinVersion =
|
||||||
|
build_property.UsingMicrosoftNETSdkWeb =
|
||||||
|
build_property.ProjectTypeGuids =
|
||||||
|
build_property.InvariantGlobalization =
|
||||||
|
build_property.PlatformNeutralAssembly =
|
||||||
|
build_property.EnforceExtendedAnalyzerRules =
|
||||||
|
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||||
|
build_property.RootNamespace = AutoPull
|
||||||
|
build_property.ProjectDir = D:\AutoPull\
|
8
obj/Release/net7.0/AutoPull.GlobalUsings.g.cs
Normal file
8
obj/Release/net7.0/AutoPull.GlobalUsings.g.cs
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
// <auto-generated/>
|
||||||
|
global using global::System;
|
||||||
|
global using global::System.Collections.Generic;
|
||||||
|
global using global::System.IO;
|
||||||
|
global using global::System.Linq;
|
||||||
|
global using global::System.Net.Http;
|
||||||
|
global using global::System.Threading;
|
||||||
|
global using global::System.Threading.Tasks;
|
BIN
obj/Release/net7.0/AutoPull.assets.cache
Normal file
BIN
obj/Release/net7.0/AutoPull.assets.cache
Normal file
Binary file not shown.
BIN
obj/Release/net7.0/AutoPull.csproj.AssemblyReference.cache
Normal file
BIN
obj/Release/net7.0/AutoPull.csproj.AssemblyReference.cache
Normal file
Binary file not shown.
0
obj/Release/net7.0/AutoPull.csproj.CopyComplete
Normal file
0
obj/Release/net7.0/AutoPull.csproj.CopyComplete
Normal file
@ -0,0 +1 @@
|
|||||||
|
7037155fdefc96493506244fc399362409067421
|
242
obj/Release/net7.0/AutoPull.csproj.FileListAbsolute.txt
Normal file
242
obj/Release/net7.0/AutoPull.csproj.FileListAbsolute.txt
Normal file
@ -0,0 +1,242 @@
|
|||||||
|
D:\AutoPull\bin\Release\net7.0\AutoPull.exe
|
||||||
|
D:\AutoPull\bin\Release\net7.0\AutoPull.deps.json
|
||||||
|
D:\AutoPull\bin\Release\net7.0\AutoPull.runtimeconfig.json
|
||||||
|
D:\AutoPull\bin\Release\net7.0\AutoPull.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\AutoPull.pdb
|
||||||
|
D:\AutoPull\bin\Release\net7.0\Cake.Powershell.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\Markdig.Signed.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\Microsoft.ApplicationInsights.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\Microsoft.Bcl.AsyncInterfaces.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\Microsoft.CodeAnalysis.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\Microsoft.CodeAnalysis.CSharp.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\Microsoft.Extensions.ObjectPool.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\Microsoft.PowerShell.MarkdownRender.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\Microsoft.Win32.Registry.AccessControl.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\Microsoft.Win32.SystemEvents.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\Namotion.Reflection.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\Newtonsoft.Json.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\NJsonSchema.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\System.CodeDom.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\System.ComponentModel.Composition.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\System.ComponentModel.Composition.Registration.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\System.Configuration.ConfigurationManager.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\System.Data.Odbc.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\System.Data.OleDb.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\System.Data.SqlClient.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\System.Diagnostics.EventLog.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\System.Diagnostics.PerformanceCounter.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\System.DirectoryServices.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\System.DirectoryServices.AccountManagement.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\System.DirectoryServices.Protocols.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\System.Drawing.Common.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\System.IO.Packaging.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\System.IO.Ports.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\System.Management.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\System.Net.Http.WinHttpHandler.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\System.Private.ServiceModel.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\System.Reflection.Context.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\System.Runtime.Caching.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\System.Security.Cryptography.Pkcs.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\System.Security.Cryptography.ProtectedData.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\System.Security.Cryptography.Xml.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\System.Security.Permissions.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\System.ServiceModel.Duplex.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\System.ServiceModel.Http.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\System.ServiceModel.NetTcp.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\System.ServiceModel.Primitives.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\System.ServiceModel.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\System.ServiceModel.Security.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\System.ServiceModel.Syndication.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\System.ServiceProcess.ServiceController.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\System.Speech.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\System.Threading.AccessControl.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\System.Web.Services.Description.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\System.Windows.Extensions.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\cs\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\de\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\es\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\fr\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\it\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\ja\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\ko\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\pl\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\pt-BR\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\ru\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\tr\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\zh-Hans\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\zh-Hant\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\cs\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\de\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\es\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\fr\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\it\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\ja\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\ko\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\pl\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\pt-BR\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\ru\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\tr\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\cs\System.Private.ServiceModel.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\de\System.Private.ServiceModel.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\es\System.Private.ServiceModel.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\fr\System.Private.ServiceModel.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\it\System.Private.ServiceModel.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\ja\System.Private.ServiceModel.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\ko\System.Private.ServiceModel.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\pl\System.Private.ServiceModel.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\pt-BR\System.Private.ServiceModel.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\ru\System.Private.ServiceModel.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\tr\System.Private.ServiceModel.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\zh-Hans\System.Private.ServiceModel.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\zh-Hant\System.Private.ServiceModel.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\cs\System.Web.Services.Description.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\de\System.Web.Services.Description.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\es\System.Web.Services.Description.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\fr\System.Web.Services.Description.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\it\System.Web.Services.Description.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\ja\System.Web.Services.Description.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\ko\System.Web.Services.Description.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\pl\System.Web.Services.Description.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\pt-BR\System.Web.Services.Description.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\ru\System.Web.Services.Description.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\tr\System.Web.Services.Description.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\zh-Hans\System.Web.Services.Description.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\zh-Hant\System.Web.Services.Description.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win\lib\net6.0\Microsoft.Management.Infrastructure.CimCmdlets.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\unix\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win-arm\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win-arm\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win-arm\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win-arm\native\mi.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win-arm\native\miutils.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win-arm64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win-arm64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win-arm64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win-arm64\native\mi.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win-arm64\native\miutils.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win10-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win10-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win10-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win10-x64\native\mi.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win10-x64\native\miutils.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win10-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win10-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win10-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win10-x86\native\mi.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win10-x86\native\miutils.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win7-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win7-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win7-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win7-x64\native\mi.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win7-x64\native\miutils.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win7-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win7-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win7-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win7-x86\native\mi.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win7-x86\native\miutils.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win8-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win8-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win8-x64\native\mi.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win8-x64\native\miutils.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win8-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win8-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win8-x86\native\mi.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win8-x86\native\miutils.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win81-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win81-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win81-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win81-x64\native\mi.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win81-x64\native\miutils.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win81-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win81-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win81-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win81-x86\native\mi.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win81-x86\native\miutils.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.Commands.Diagnostics.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\unix\lib\net6.0\Microsoft.PowerShell.Commands.Management.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.Commands.Management.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\unix\lib\net6.0\Microsoft.PowerShell.Commands.Utility.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.Commands.Utility.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\unix\lib\net6.0\Microsoft.PowerShell.ConsoleHost.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.ConsoleHost.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.CoreCLR.Eventing.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\linux-arm\native\libpsl-native.so
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\linux-arm64\native\libpsl-native.so
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\linux-musl-x64\native\libpsl-native.so
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\linux-x64\native\libmi.so
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\linux-x64\native\libpsl-native.so
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\linux-x64\native\libpsrpclient.so
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\osx\native\libmi.dylib
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\osx\native\libpsl-native.dylib
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\osx\native\libpsrpclient.dylib
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win-arm\native\PowerShell.Core.Instrumentation.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win-arm\native\pwrshplugin.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win-arm64\native\PowerShell.Core.Instrumentation.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win-arm64\native\pwrshplugin.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win-x64\native\PowerShell.Core.Instrumentation.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win-x64\native\pwrshplugin.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win-x86\native\PowerShell.Core.Instrumentation.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win-x86\native\pwrshplugin.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\unix\lib\net6.0\Microsoft.PowerShell.SDK.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.SDK.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\unix\lib\net6.0\Microsoft.PowerShell.Security.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.Security.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win\lib\net6.0\Microsoft.Win32.Registry.AccessControl.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win\lib\net6.0\Microsoft.Win32.SystemEvents.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win\lib\net6.0\Microsoft.WSMan.Management.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win\lib\net6.0\Microsoft.WSMan.Runtime.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\linux-arm\native\libSystem.IO.Ports.Native.so
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\linux-arm64\native\libSystem.IO.Ports.Native.so
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\linux-x64\native\libSystem.IO.Ports.Native.so
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\osx-arm64\native\libSystem.IO.Ports.Native.dylib
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\osx-x64\native\libSystem.IO.Ports.Native.dylib
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win-arm64\native\sni.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win-x64\native\sni.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win-x86\native\sni.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\freebsd\lib\net6.0\System.Data.Odbc.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\illumos\lib\net6.0\System.Data.Odbc.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\ios\lib\net6.0\System.Data.Odbc.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\linux\lib\net6.0\System.Data.Odbc.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\osx\lib\net6.0\System.Data.Odbc.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\solaris\lib\net6.0\System.Data.Odbc.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\tvos\lib\net6.0\System.Data.Odbc.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win\lib\net6.0\System.Data.Odbc.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win\lib\net6.0\System.Data.OleDb.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\unix\lib\netcoreapp2.1\System.Data.SqlClient.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win\lib\netcoreapp2.1\System.Data.SqlClient.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win\lib\net6.0\System.Diagnostics.EventLog.Messages.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win\lib\net6.0\System.Diagnostics.EventLog.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win\lib\net6.0\System.Diagnostics.PerformanceCounter.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win\lib\net6.0\System.DirectoryServices.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win\lib\net6.0\System.DirectoryServices.AccountManagement.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\linux\lib\net6.0\System.DirectoryServices.Protocols.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\osx\lib\net6.0\System.DirectoryServices.Protocols.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win\lib\net6.0\System.DirectoryServices.Protocols.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\unix\lib\net6.0\System.Drawing.Common.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win\lib\net6.0\System.Drawing.Common.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\unix\lib\net6.0\System.IO.Ports.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win\lib\net6.0\System.IO.Ports.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win\lib\net6.0\System.Management.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\unix\lib\net6.0\System.Management.Automation.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win\lib\net6.0\System.Management.Automation.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win\lib\net6.0\System.Net.Http.WinHttpHandler.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win\lib\net6.0\System.Runtime.Caching.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win\lib\net6.0\System.Security.Cryptography.Pkcs.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win\lib\net6.0\System.Security.Cryptography.ProtectedData.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win\lib\net6.0\System.ServiceProcess.ServiceController.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win\lib\net6.0\System.Speech.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win\lib\net6.0\System.Threading.AccessControl.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\runtimes\win\lib\net6.0\System.Windows.Extensions.dll
|
||||||
|
D:\AutoPull\obj\Release\net7.0\AutoPull.csproj.AssemblyReference.cache
|
||||||
|
D:\AutoPull\obj\Release\net7.0\AutoPull.GeneratedMSBuildEditorConfig.editorconfig
|
||||||
|
D:\AutoPull\obj\Release\net7.0\AutoPull.AssemblyInfoInputs.cache
|
||||||
|
D:\AutoPull\obj\Release\net7.0\AutoPull.AssemblyInfo.cs
|
||||||
|
D:\AutoPull\obj\Release\net7.0\AutoPull.csproj.CoreCompileInputs.cache
|
||||||
|
D:\AutoPull\obj\Release\net7.0\AutoPull.csproj.CopyComplete
|
||||||
|
D:\AutoPull\obj\Release\net7.0\AutoPull.dll
|
||||||
|
D:\AutoPull\obj\Release\net7.0\refint\AutoPull.dll
|
||||||
|
D:\AutoPull\obj\Release\net7.0\AutoPull.pdb
|
||||||
|
D:\AutoPull\obj\Release\net7.0\AutoPull.genruntimeconfig.cache
|
||||||
|
D:\AutoPull\obj\Release\net7.0\ref\AutoPull.dll
|
BIN
obj/Release/net7.0/AutoPull.dll
Normal file
BIN
obj/Release/net7.0/AutoPull.dll
Normal file
Binary file not shown.
1
obj/Release/net7.0/AutoPull.genruntimeconfig.cache
Normal file
1
obj/Release/net7.0/AutoPull.genruntimeconfig.cache
Normal file
@ -0,0 +1 @@
|
|||||||
|
0c7414ec237dafcccf11f74415fc6b9a06ac2958
|
BIN
obj/Release/net7.0/AutoPull.pdb
Normal file
BIN
obj/Release/net7.0/AutoPull.pdb
Normal file
Binary file not shown.
231
obj/Release/net7.0/PublishOutputs.5d3a1404da.txt
Normal file
231
obj/Release/net7.0/PublishOutputs.5d3a1404da.txt
Normal file
@ -0,0 +1,231 @@
|
|||||||
|
D:\AutoPull\bin\Release\net7.0\publish\AutoPull.exe
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\AutoPull.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\AutoPull.deps.json
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\AutoPull.runtimeconfig.json
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\AutoPull.pdb
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\Cake.Powershell.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\Markdig.Signed.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\Microsoft.ApplicationInsights.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\Microsoft.Bcl.AsyncInterfaces.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\Microsoft.CodeAnalysis.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\Microsoft.CodeAnalysis.CSharp.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\Microsoft.Extensions.ObjectPool.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\Microsoft.PowerShell.MarkdownRender.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\Microsoft.Win32.Registry.AccessControl.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\Microsoft.Win32.SystemEvents.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\Namotion.Reflection.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\Newtonsoft.Json.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\NJsonSchema.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\System.CodeDom.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\System.ComponentModel.Composition.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\System.ComponentModel.Composition.Registration.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\System.Configuration.ConfigurationManager.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\System.Data.Odbc.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\System.Data.OleDb.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\System.Data.SqlClient.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\System.Diagnostics.EventLog.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\System.Diagnostics.PerformanceCounter.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\System.DirectoryServices.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\System.DirectoryServices.AccountManagement.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\System.DirectoryServices.Protocols.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\System.Drawing.Common.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\System.IO.Packaging.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\System.IO.Ports.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\System.Management.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\System.Net.Http.WinHttpHandler.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\System.Private.ServiceModel.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\System.Reflection.Context.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\System.Runtime.Caching.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\System.Security.Cryptography.Pkcs.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\System.Security.Cryptography.ProtectedData.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\System.Security.Cryptography.Xml.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\System.Security.Permissions.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\System.ServiceModel.Duplex.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\System.ServiceModel.Http.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\System.ServiceModel.NetTcp.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\System.ServiceModel.Primitives.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\System.ServiceModel.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\System.ServiceModel.Security.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\System.ServiceModel.Syndication.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\System.ServiceProcess.ServiceController.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\System.Speech.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\System.Threading.AccessControl.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\System.Web.Services.Description.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\System.Windows.Extensions.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\cs\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\de\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\es\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\fr\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\it\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\ja\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\ko\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\pl\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\pt-BR\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\ru\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\tr\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\zh-Hans\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\zh-Hant\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\cs\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\de\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\es\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\fr\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\it\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\ja\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\ko\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\pl\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\pt-BR\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\ru\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\tr\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\zh-Hans\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\zh-Hant\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\cs\System.Private.ServiceModel.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\de\System.Private.ServiceModel.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\es\System.Private.ServiceModel.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\fr\System.Private.ServiceModel.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\it\System.Private.ServiceModel.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\ja\System.Private.ServiceModel.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\ko\System.Private.ServiceModel.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\pl\System.Private.ServiceModel.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\pt-BR\System.Private.ServiceModel.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\ru\System.Private.ServiceModel.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\tr\System.Private.ServiceModel.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\zh-Hans\System.Private.ServiceModel.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\zh-Hant\System.Private.ServiceModel.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\cs\System.Web.Services.Description.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\de\System.Web.Services.Description.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\es\System.Web.Services.Description.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\fr\System.Web.Services.Description.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\it\System.Web.Services.Description.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\ja\System.Web.Services.Description.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\ko\System.Web.Services.Description.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\pl\System.Web.Services.Description.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\pt-BR\System.Web.Services.Description.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\ru\System.Web.Services.Description.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\tr\System.Web.Services.Description.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\zh-Hans\System.Web.Services.Description.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\zh-Hant\System.Web.Services.Description.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win\lib\net6.0\Microsoft.Management.Infrastructure.CimCmdlets.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\unix\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win-arm\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win-arm\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win-arm\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win-arm\native\mi.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win-arm\native\miutils.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win-arm64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win-arm64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win-arm64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win-arm64\native\mi.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win-arm64\native\miutils.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win10-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win10-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win10-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win10-x64\native\mi.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win10-x64\native\miutils.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win10-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win10-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win10-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win10-x86\native\mi.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win10-x86\native\miutils.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win7-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win7-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win7-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win7-x64\native\mi.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win7-x64\native\miutils.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win7-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win7-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win7-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win7-x86\native\mi.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win7-x86\native\miutils.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win8-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win8-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win8-x64\native\mi.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win8-x64\native\miutils.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win8-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win8-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win8-x86\native\mi.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win8-x86\native\miutils.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win81-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win81-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win81-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win81-x64\native\mi.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win81-x64\native\miutils.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win81-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win81-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win81-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win81-x86\native\mi.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win81-x86\native\miutils.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win\lib\net6.0\Microsoft.PowerShell.Commands.Diagnostics.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\unix\lib\net6.0\Microsoft.PowerShell.Commands.Management.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win\lib\net6.0\Microsoft.PowerShell.Commands.Management.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\unix\lib\net6.0\Microsoft.PowerShell.Commands.Utility.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win\lib\net6.0\Microsoft.PowerShell.Commands.Utility.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\unix\lib\net6.0\Microsoft.PowerShell.ConsoleHost.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win\lib\net6.0\Microsoft.PowerShell.ConsoleHost.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win\lib\net6.0\Microsoft.PowerShell.CoreCLR.Eventing.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\linux-arm\native\libpsl-native.so
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\linux-arm64\native\libpsl-native.so
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\linux-musl-x64\native\libpsl-native.so
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\linux-x64\native\libmi.so
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\linux-x64\native\libpsl-native.so
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\linux-x64\native\libpsrpclient.so
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\osx\native\libmi.dylib
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\osx\native\libpsl-native.dylib
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\osx\native\libpsrpclient.dylib
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win-arm\native\PowerShell.Core.Instrumentation.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win-arm\native\pwrshplugin.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win-arm64\native\PowerShell.Core.Instrumentation.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win-arm64\native\pwrshplugin.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win-x64\native\PowerShell.Core.Instrumentation.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win-x64\native\pwrshplugin.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win-x86\native\PowerShell.Core.Instrumentation.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win-x86\native\pwrshplugin.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\unix\lib\net6.0\Microsoft.PowerShell.SDK.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win\lib\net6.0\Microsoft.PowerShell.SDK.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\unix\lib\net6.0\Microsoft.PowerShell.Security.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win\lib\net6.0\Microsoft.PowerShell.Security.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win\lib\net6.0\Microsoft.Win32.Registry.AccessControl.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win\lib\net6.0\Microsoft.Win32.SystemEvents.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win\lib\net6.0\Microsoft.WSMan.Management.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win\lib\net6.0\Microsoft.WSMan.Runtime.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\linux-arm\native\libSystem.IO.Ports.Native.so
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\linux-arm64\native\libSystem.IO.Ports.Native.so
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\linux-x64\native\libSystem.IO.Ports.Native.so
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\osx-arm64\native\libSystem.IO.Ports.Native.dylib
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\osx-x64\native\libSystem.IO.Ports.Native.dylib
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win-arm64\native\sni.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win-x64\native\sni.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win-x86\native\sni.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\freebsd\lib\net6.0\System.Data.Odbc.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\illumos\lib\net6.0\System.Data.Odbc.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\ios\lib\net6.0\System.Data.Odbc.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\linux\lib\net6.0\System.Data.Odbc.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\osx\lib\net6.0\System.Data.Odbc.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\solaris\lib\net6.0\System.Data.Odbc.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\tvos\lib\net6.0\System.Data.Odbc.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win\lib\net6.0\System.Data.Odbc.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win\lib\net6.0\System.Data.OleDb.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\unix\lib\netcoreapp2.1\System.Data.SqlClient.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win\lib\netcoreapp2.1\System.Data.SqlClient.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win\lib\net6.0\System.Diagnostics.EventLog.Messages.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win\lib\net6.0\System.Diagnostics.EventLog.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win\lib\net6.0\System.Diagnostics.PerformanceCounter.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win\lib\net6.0\System.DirectoryServices.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win\lib\net6.0\System.DirectoryServices.AccountManagement.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\linux\lib\net6.0\System.DirectoryServices.Protocols.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\osx\lib\net6.0\System.DirectoryServices.Protocols.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win\lib\net6.0\System.DirectoryServices.Protocols.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\unix\lib\net6.0\System.Drawing.Common.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win\lib\net6.0\System.Drawing.Common.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\unix\lib\net6.0\System.IO.Ports.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win\lib\net6.0\System.IO.Ports.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win\lib\net6.0\System.Management.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\unix\lib\net6.0\System.Management.Automation.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win\lib\net6.0\System.Management.Automation.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win\lib\net6.0\System.Net.Http.WinHttpHandler.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win\lib\net6.0\System.Runtime.Caching.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win\lib\net6.0\System.Security.Cryptography.Pkcs.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win\lib\net6.0\System.Security.Cryptography.ProtectedData.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win\lib\net6.0\System.ServiceProcess.ServiceController.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win\lib\net6.0\System.Speech.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win\lib\net6.0\System.Threading.AccessControl.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\runtimes\win\lib\net6.0\System.Windows.Extensions.dll
|
BIN
obj/Release/net7.0/apphost.exe
Normal file
BIN
obj/Release/net7.0/apphost.exe
Normal file
Binary file not shown.
BIN
obj/Release/net7.0/ref/AutoPull.dll
Normal file
BIN
obj/Release/net7.0/ref/AutoPull.dll
Normal file
Binary file not shown.
BIN
obj/Release/net7.0/refint/AutoPull.dll
Normal file
BIN
obj/Release/net7.0/refint/AutoPull.dll
Normal file
Binary file not shown.
@ -0,0 +1,4 @@
|
|||||||
|
// <autogenerated />
|
||||||
|
using System;
|
||||||
|
using System.Reflection;
|
||||||
|
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v7.0", FrameworkDisplayName = ".NET 7.0")]
|
23
obj/Release/net7.0/win-x86/AutoPull.AssemblyInfo.cs
Normal file
23
obj/Release/net7.0/win-x86/AutoPull.AssemblyInfo.cs
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// 此代码由工具生成。
|
||||||
|
// 运行时版本:4.0.30319.42000
|
||||||
|
//
|
||||||
|
// 对此文件的更改可能会导致不正确的行为,并且如果
|
||||||
|
// 重新生成代码,这些更改将会丢失。
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
using System;
|
||||||
|
using System.Reflection;
|
||||||
|
|
||||||
|
[assembly: System.Reflection.AssemblyCompanyAttribute("AutoPull")]
|
||||||
|
[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
|
||||||
|
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||||
|
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||||
|
[assembly: System.Reflection.AssemblyProductAttribute("AutoPull")]
|
||||||
|
[assembly: System.Reflection.AssemblyTitleAttribute("AutoPull")]
|
||||||
|
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||||
|
|
||||||
|
// 由 MSBuild WriteCodeFragment 类生成。
|
||||||
|
|
@ -0,0 +1 @@
|
|||||||
|
e29fcb5ff662ce3780e0f0e0f5c860446abf2f56
|
@ -0,0 +1,15 @@
|
|||||||
|
is_global = true
|
||||||
|
build_property.TargetFramework = net7.0
|
||||||
|
build_property.TargetPlatformMinVersion =
|
||||||
|
build_property.UsingMicrosoftNETSdkWeb =
|
||||||
|
build_property.ProjectTypeGuids =
|
||||||
|
build_property.InvariantGlobalization =
|
||||||
|
build_property.PlatformNeutralAssembly =
|
||||||
|
build_property.EnforceExtendedAnalyzerRules =
|
||||||
|
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||||
|
build_property.EnableAotAnalyzer =
|
||||||
|
build_property.EnableSingleFileAnalyzer = true
|
||||||
|
build_property.EnableTrimAnalyzer =
|
||||||
|
build_property.IncludeAllContentForSelfExtract =
|
||||||
|
build_property.RootNamespace = AutoPull
|
||||||
|
build_property.ProjectDir = D:\AutoPull\
|
8
obj/Release/net7.0/win-x86/AutoPull.GlobalUsings.g.cs
Normal file
8
obj/Release/net7.0/win-x86/AutoPull.GlobalUsings.g.cs
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
// <auto-generated/>
|
||||||
|
global using global::System;
|
||||||
|
global using global::System.Collections.Generic;
|
||||||
|
global using global::System.IO;
|
||||||
|
global using global::System.Linq;
|
||||||
|
global using global::System.Net.Http;
|
||||||
|
global using global::System.Threading;
|
||||||
|
global using global::System.Threading.Tasks;
|
BIN
obj/Release/net7.0/win-x86/AutoPull.assets.cache
Normal file
BIN
obj/Release/net7.0/win-x86/AutoPull.assets.cache
Normal file
Binary file not shown.
Binary file not shown.
@ -0,0 +1 @@
|
|||||||
|
d9b6f2e78578bd19efa8b414901d36169bb2c56f
|
132
obj/Release/net7.0/win-x86/AutoPull.csproj.FileListAbsolute.txt
Normal file
132
obj/Release/net7.0/win-x86/AutoPull.csproj.FileListAbsolute.txt
Normal file
@ -0,0 +1,132 @@
|
|||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\AutoPull.exe
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\AutoPull.deps.json
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\AutoPull.runtimeconfig.json
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\AutoPull.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\AutoPull.pdb
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\Cake.Powershell.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\Markdig.Signed.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\Microsoft.ApplicationInsights.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\Microsoft.Bcl.AsyncInterfaces.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\Microsoft.CodeAnalysis.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\Microsoft.CodeAnalysis.CSharp.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\Microsoft.Extensions.ObjectPool.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\Microsoft.Management.Infrastructure.CimCmdlets.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\Microsoft.PowerShell.Commands.Diagnostics.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\Microsoft.PowerShell.Commands.Management.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\Microsoft.PowerShell.Commands.Utility.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\Microsoft.PowerShell.ConsoleHost.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\Microsoft.PowerShell.CoreCLR.Eventing.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\Microsoft.PowerShell.MarkdownRender.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\Microsoft.PowerShell.SDK.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\Microsoft.PowerShell.Security.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\Microsoft.Win32.Registry.AccessControl.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\Microsoft.Win32.SystemEvents.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\Microsoft.WSMan.Management.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\Microsoft.WSMan.Runtime.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\Namotion.Reflection.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\Newtonsoft.Json.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\NJsonSchema.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\System.CodeDom.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\System.ComponentModel.Composition.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\System.ComponentModel.Composition.Registration.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\System.Configuration.ConfigurationManager.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\System.Data.Odbc.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\System.Data.OleDb.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\System.Data.SqlClient.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\System.Diagnostics.EventLog.Messages.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\System.Diagnostics.EventLog.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\System.Diagnostics.PerformanceCounter.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\System.DirectoryServices.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\System.DirectoryServices.AccountManagement.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\System.DirectoryServices.Protocols.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\System.Drawing.Common.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\System.IO.Packaging.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\System.IO.Ports.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\System.Management.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\System.Management.Automation.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\System.Net.Http.WinHttpHandler.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\System.Private.ServiceModel.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\System.Reflection.Context.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\System.Runtime.Caching.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\System.Security.Cryptography.Pkcs.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\System.Security.Cryptography.ProtectedData.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\System.Security.Cryptography.Xml.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\System.Security.Permissions.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\System.ServiceModel.Duplex.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\System.ServiceModel.Http.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\System.ServiceModel.NetTcp.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\System.ServiceModel.Primitives.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\System.ServiceModel.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\System.ServiceModel.Security.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\System.ServiceModel.Syndication.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\System.ServiceProcess.ServiceController.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\System.Speech.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\System.Threading.AccessControl.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\System.Web.Services.Description.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\System.Windows.Extensions.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\cs\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\de\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\es\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\fr\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\it\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\ja\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\ko\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\pl\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\pt-BR\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\ru\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\tr\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\zh-Hans\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\zh-Hant\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\cs\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\de\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\es\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\fr\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\it\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\ja\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\ko\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\pl\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\pt-BR\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\ru\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\tr\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\zh-Hans\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\zh-Hant\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\cs\System.Private.ServiceModel.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\de\System.Private.ServiceModel.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\es\System.Private.ServiceModel.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\fr\System.Private.ServiceModel.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\it\System.Private.ServiceModel.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\ja\System.Private.ServiceModel.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\ko\System.Private.ServiceModel.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\pl\System.Private.ServiceModel.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\pt-BR\System.Private.ServiceModel.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\ru\System.Private.ServiceModel.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\tr\System.Private.ServiceModel.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\zh-Hans\System.Private.ServiceModel.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\zh-Hant\System.Private.ServiceModel.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\cs\System.Web.Services.Description.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\de\System.Web.Services.Description.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\es\System.Web.Services.Description.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\fr\System.Web.Services.Description.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\it\System.Web.Services.Description.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\ja\System.Web.Services.Description.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\ko\System.Web.Services.Description.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\pl\System.Web.Services.Description.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\pt-BR\System.Web.Services.Description.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\ru\System.Web.Services.Description.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\tr\System.Web.Services.Description.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\zh-Hans\System.Web.Services.Description.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\zh-Hant\System.Web.Services.Description.resources.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\PowerShell.Core.Instrumentation.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\pwrshplugin.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\win-x86\sni.dll
|
||||||
|
D:\AutoPull\obj\Release\net7.0\win-x86\AutoPull.csproj.AssemblyReference.cache
|
||||||
|
D:\AutoPull\obj\Release\net7.0\win-x86\AutoPull.GeneratedMSBuildEditorConfig.editorconfig
|
||||||
|
D:\AutoPull\obj\Release\net7.0\win-x86\AutoPull.AssemblyInfoInputs.cache
|
||||||
|
D:\AutoPull\obj\Release\net7.0\win-x86\AutoPull.AssemblyInfo.cs
|
||||||
|
D:\AutoPull\obj\Release\net7.0\win-x86\AutoPull.csproj.CoreCompileInputs.cache
|
||||||
|
D:\AutoPull\obj\Release\net7.0\win-x86\AutoPull.csproj.CopyComplete
|
||||||
|
D:\AutoPull\obj\Release\net7.0\win-x86\AutoPull.dll
|
||||||
|
D:\AutoPull\obj\Release\net7.0\win-x86\refint\AutoPull.dll
|
||||||
|
D:\AutoPull\obj\Release\net7.0\win-x86\AutoPull.pdb
|
||||||
|
D:\AutoPull\obj\Release\net7.0\win-x86\AutoPull.genruntimeconfig.cache
|
||||||
|
D:\AutoPull\obj\Release\net7.0\win-x86\ref\AutoPull.dll
|
BIN
obj/Release/net7.0/win-x86/AutoPull.dll
Normal file
BIN
obj/Release/net7.0/win-x86/AutoPull.dll
Normal file
Binary file not shown.
@ -0,0 +1 @@
|
|||||||
|
d4c8dedbe182c866d3bb910617a21759abd65850
|
BIN
obj/Release/net7.0/win-x86/AutoPull.pdb
Normal file
BIN
obj/Release/net7.0/win-x86/AutoPull.pdb
Normal file
Binary file not shown.
5
obj/Release/net7.0/win-x86/PublishOutputs.8521b664d4.txt
Normal file
5
obj/Release/net7.0/win-x86/PublishOutputs.8521b664d4.txt
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
D:\AutoPull\bin\Release\net7.0\publish\win-x86\AutoPull.pdb
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\win-x86\PowerShell.Core.Instrumentation.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\win-x86\pwrshplugin.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\win-x86\sni.dll
|
||||||
|
D:\AutoPull\bin\Release\net7.0\publish\win-x86\AutoPull.exe
|
BIN
obj/Release/net7.0/win-x86/apphost.exe
Normal file
BIN
obj/Release/net7.0/win-x86/apphost.exe
Normal file
Binary file not shown.
BIN
obj/Release/net7.0/win-x86/ref/AutoPull.dll
Normal file
BIN
obj/Release/net7.0/win-x86/ref/AutoPull.dll
Normal file
Binary file not shown.
BIN
obj/Release/net7.0/win-x86/refint/AutoPull.dll
Normal file
BIN
obj/Release/net7.0/win-x86/refint/AutoPull.dll
Normal file
Binary file not shown.
@ -915,15 +915,15 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"Newtonsoft.Json/13.0.1": {
|
"Newtonsoft.Json/13.0.2": {
|
||||||
"type": "package",
|
"type": "package",
|
||||||
"compile": {
|
"compile": {
|
||||||
"lib/netstandard2.0/Newtonsoft.Json.dll": {
|
"lib/net6.0/Newtonsoft.Json.dll": {
|
||||||
"related": ".xml"
|
"related": ".xml"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"runtime": {
|
"runtime": {
|
||||||
"lib/netstandard2.0/Newtonsoft.Json.dll": {
|
"lib/net6.0/Newtonsoft.Json.dll": {
|
||||||
"related": ".xml"
|
"related": ".xml"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -3541,14 +3541,15 @@
|
|||||||
"namotion.reflection.nuspec"
|
"namotion.reflection.nuspec"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"Newtonsoft.Json/13.0.1": {
|
"Newtonsoft.Json/13.0.2": {
|
||||||
"sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==",
|
"sha512": "R2pZ3B0UjeyHShm9vG+Tu0EBb2lC8b0dFzV9gVn50ofHXh9Smjk6kTn7A/FdAsC8B5cKib1OnGYOXxRBz5XQDg==",
|
||||||
"type": "package",
|
"type": "package",
|
||||||
"path": "newtonsoft.json/13.0.1",
|
"path": "newtonsoft.json/13.0.2",
|
||||||
"files": [
|
"files": [
|
||||||
".nupkg.metadata",
|
".nupkg.metadata",
|
||||||
".signature.p7s",
|
".signature.p7s",
|
||||||
"LICENSE.md",
|
"LICENSE.md",
|
||||||
|
"README.md",
|
||||||
"lib/net20/Newtonsoft.Json.dll",
|
"lib/net20/Newtonsoft.Json.dll",
|
||||||
"lib/net20/Newtonsoft.Json.xml",
|
"lib/net20/Newtonsoft.Json.xml",
|
||||||
"lib/net35/Newtonsoft.Json.dll",
|
"lib/net35/Newtonsoft.Json.dll",
|
||||||
@ -3557,13 +3558,15 @@
|
|||||||
"lib/net40/Newtonsoft.Json.xml",
|
"lib/net40/Newtonsoft.Json.xml",
|
||||||
"lib/net45/Newtonsoft.Json.dll",
|
"lib/net45/Newtonsoft.Json.dll",
|
||||||
"lib/net45/Newtonsoft.Json.xml",
|
"lib/net45/Newtonsoft.Json.xml",
|
||||||
|
"lib/net6.0/Newtonsoft.Json.dll",
|
||||||
|
"lib/net6.0/Newtonsoft.Json.xml",
|
||||||
"lib/netstandard1.0/Newtonsoft.Json.dll",
|
"lib/netstandard1.0/Newtonsoft.Json.dll",
|
||||||
"lib/netstandard1.0/Newtonsoft.Json.xml",
|
"lib/netstandard1.0/Newtonsoft.Json.xml",
|
||||||
"lib/netstandard1.3/Newtonsoft.Json.dll",
|
"lib/netstandard1.3/Newtonsoft.Json.dll",
|
||||||
"lib/netstandard1.3/Newtonsoft.Json.xml",
|
"lib/netstandard1.3/Newtonsoft.Json.xml",
|
||||||
"lib/netstandard2.0/Newtonsoft.Json.dll",
|
"lib/netstandard2.0/Newtonsoft.Json.dll",
|
||||||
"lib/netstandard2.0/Newtonsoft.Json.xml",
|
"lib/netstandard2.0/Newtonsoft.Json.xml",
|
||||||
"newtonsoft.json.13.0.1.nupkg.sha512",
|
"newtonsoft.json.13.0.2.nupkg.sha512",
|
||||||
"newtonsoft.json.nuspec",
|
"newtonsoft.json.nuspec",
|
||||||
"packageIcon.png"
|
"packageIcon.png"
|
||||||
]
|
]
|
||||||
@ -6934,7 +6937,8 @@
|
|||||||
},
|
},
|
||||||
"projectFileDependencyGroups": {
|
"projectFileDependencyGroups": {
|
||||||
"net7.0": [
|
"net7.0": [
|
||||||
"Cake.Powershell >= 2.0.0"
|
"Cake.Powershell >= 2.0.0",
|
||||||
|
"Newtonsoft.Json >= 13.0.2"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"packageFolders": {
|
"packageFolders": {
|
||||||
@ -6943,11 +6947,11 @@
|
|||||||
"project": {
|
"project": {
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"restore": {
|
"restore": {
|
||||||
"projectUniqueName": "F:\\Sin365\\AutoPull\\AutoPull.csproj",
|
"projectUniqueName": "D:\\AutoPull\\AutoPull.csproj",
|
||||||
"projectName": "AutoPull",
|
"projectName": "AutoPull",
|
||||||
"projectPath": "F:\\Sin365\\AutoPull\\AutoPull.csproj",
|
"projectPath": "D:\\AutoPull\\AutoPull.csproj",
|
||||||
"packagesPath": "C:\\Users\\35337\\.nuget\\packages\\",
|
"packagesPath": "C:\\Users\\35337\\.nuget\\packages\\",
|
||||||
"outputPath": "F:\\Sin365\\AutoPull\\obj\\",
|
"outputPath": "D:\\AutoPull\\obj\\",
|
||||||
"projectStyle": "PackageReference",
|
"projectStyle": "PackageReference",
|
||||||
"configFilePaths": [
|
"configFilePaths": [
|
||||||
"C:\\Users\\35337\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
"C:\\Users\\35337\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||||
@ -6979,6 +6983,10 @@
|
|||||||
"Cake.Powershell": {
|
"Cake.Powershell": {
|
||||||
"target": "Package",
|
"target": "Package",
|
||||||
"version": "[2.0.0, )"
|
"version": "[2.0.0, )"
|
||||||
|
},
|
||||||
|
"Newtonsoft.Json": {
|
||||||
|
"target": "Package",
|
||||||
|
"version": "[13.0.2, )"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"imports": [
|
"imports": [
|
||||||
@ -6997,7 +7005,7 @@
|
|||||||
"privateAssets": "all"
|
"privateAssets": "all"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.200\\RuntimeIdentifierGraph.json"
|
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.102\\RuntimeIdentifierGraph.json"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
78
obj/publish/win-x86/AutoPull.csproj.nuget.dgspec.json
Normal file
78
obj/publish/win-x86/AutoPull.csproj.nuget.dgspec.json
Normal file
@ -0,0 +1,78 @@
|
|||||||
|
{
|
||||||
|
"format": 1,
|
||||||
|
"restore": {
|
||||||
|
"D:\\AutoPull\\AutoPull.csproj": {}
|
||||||
|
},
|
||||||
|
"projects": {
|
||||||
|
"D:\\AutoPull\\AutoPull.csproj": {
|
||||||
|
"version": "1.0.0",
|
||||||
|
"restore": {
|
||||||
|
"projectUniqueName": "D:\\AutoPull\\AutoPull.csproj",
|
||||||
|
"projectName": "AutoPull",
|
||||||
|
"projectPath": "D:\\AutoPull\\AutoPull.csproj",
|
||||||
|
"packagesPath": "C:\\Users\\35337\\.nuget\\packages\\",
|
||||||
|
"outputPath": "D:\\AutoPull\\obj\\publish\\win-x86\\",
|
||||||
|
"projectStyle": "PackageReference",
|
||||||
|
"configFilePaths": [
|
||||||
|
"C:\\Users\\35337\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||||
|
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
||||||
|
],
|
||||||
|
"originalTargetFrameworks": [
|
||||||
|
"net7.0"
|
||||||
|
],
|
||||||
|
"sources": {
|
||||||
|
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||||
|
"https://api.nuget.org/v3/index.json": {}
|
||||||
|
},
|
||||||
|
"frameworks": {
|
||||||
|
"net7.0": {
|
||||||
|
"targetAlias": "net7.0",
|
||||||
|
"projectReferences": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"warningProperties": {
|
||||||
|
"warnAsError": [
|
||||||
|
"NU1605"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"frameworks": {
|
||||||
|
"net7.0": {
|
||||||
|
"targetAlias": "net7.0",
|
||||||
|
"dependencies": {
|
||||||
|
"Cake.Powershell": {
|
||||||
|
"target": "Package",
|
||||||
|
"version": "[2.0.0, )"
|
||||||
|
},
|
||||||
|
"Newtonsoft.Json": {
|
||||||
|
"target": "Package",
|
||||||
|
"version": "[13.0.2, )"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"imports": [
|
||||||
|
"net461",
|
||||||
|
"net462",
|
||||||
|
"net47",
|
||||||
|
"net471",
|
||||||
|
"net472",
|
||||||
|
"net48",
|
||||||
|
"net481"
|
||||||
|
],
|
||||||
|
"assetTargetFallback": true,
|
||||||
|
"warn": true,
|
||||||
|
"frameworkReferences": {
|
||||||
|
"Microsoft.NETCore.App": {
|
||||||
|
"privateAssets": "all"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.102\\RuntimeIdentifierGraph.json"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"runtimes": {
|
||||||
|
"win-x86": {
|
||||||
|
"#import": []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
18
obj/publish/win-x86/AutoPull.csproj.nuget.g.props
Normal file
18
obj/publish/win-x86/AutoPull.csproj.nuget.g.props
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||||
|
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
|
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
|
||||||
|
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
||||||
|
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
||||||
|
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
|
||||||
|
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\35337\.nuget\packages\</NuGetPackageFolders>
|
||||||
|
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||||
|
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.4.0</NuGetToolVersion>
|
||||||
|
</PropertyGroup>
|
||||||
|
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
|
<SourceRoot Include="C:\Users\35337\.nuget\packages\" />
|
||||||
|
</ItemGroup>
|
||||||
|
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
|
<PkgMicrosoft_CodeAnalysis_Analyzers Condition=" '$(PkgMicrosoft_CodeAnalysis_Analyzers)' == '' ">C:\Users\35337\.nuget\packages\microsoft.codeanalysis.analyzers\3.3.2</PkgMicrosoft_CodeAnalysis_Analyzers>
|
||||||
|
</PropertyGroup>
|
||||||
|
</Project>
|
2
obj/publish/win-x86/AutoPull.csproj.nuget.g.targets
Normal file
2
obj/publish/win-x86/AutoPull.csproj.nuget.g.targets
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||||
|
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" />
|
9468
obj/publish/win-x86/project.assets.json
Normal file
9468
obj/publish/win-x86/project.assets.json
Normal file
File diff suppressed because it is too large
Load Diff
140
obj/publish/win-x86/project.nuget.cache
Normal file
140
obj/publish/win-x86/project.nuget.cache
Normal file
@ -0,0 +1,140 @@
|
|||||||
|
{
|
||||||
|
"version": 2,
|
||||||
|
"dgSpecHash": "WeQ+3G6SYAIxF3MILeRNe5frGmXsLoeONsn1lyuk/zaJ3XsXs8Ozc+N7xCmgpMA8/7Fp9iCa0EALQqo9M+mE0w==",
|
||||||
|
"success": true,
|
||||||
|
"projectFilePath": "D:\\AutoPull\\AutoPull.csproj",
|
||||||
|
"expectedPackageFiles": [
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\cake.powershell\\2.0.0\\cake.powershell.2.0.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\markdig.signed\\0.22.0\\markdig.signed.0.22.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\microsoft.applicationinsights\\2.18.0\\microsoft.applicationinsights.2.18.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\5.0.0\\microsoft.bcl.asyncinterfaces.5.0.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\microsoft.codeanalysis.analyzers\\3.3.2\\microsoft.codeanalysis.analyzers.3.3.2.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\microsoft.codeanalysis.common\\4.0.1\\microsoft.codeanalysis.common.4.0.1.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\microsoft.codeanalysis.csharp\\4.0.1\\microsoft.codeanalysis.csharp.4.0.1.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\microsoft.csharp\\4.3.0\\microsoft.csharp.4.3.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\microsoft.extensions.objectpool\\5.0.10\\microsoft.extensions.objectpool.5.0.10.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\microsoft.management.infrastructure\\2.0.0\\microsoft.management.infrastructure.2.0.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\microsoft.management.infrastructure.cimcmdlets\\7.2.1\\microsoft.management.infrastructure.cimcmdlets.7.2.1.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\microsoft.management.infrastructure.runtime.unix\\2.0.0\\microsoft.management.infrastructure.runtime.unix.2.0.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\microsoft.management.infrastructure.runtime.win\\2.0.0\\microsoft.management.infrastructure.runtime.win.2.0.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\microsoft.netcore.platforms\\1.1.0\\microsoft.netcore.platforms.1.1.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\microsoft.netcore.windows.apisets\\1.0.1\\microsoft.netcore.windows.apisets.1.0.1.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\microsoft.powershell.commands.diagnostics\\7.2.1\\microsoft.powershell.commands.diagnostics.7.2.1.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\microsoft.powershell.commands.management\\7.2.1\\microsoft.powershell.commands.management.7.2.1.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\microsoft.powershell.commands.utility\\7.2.1\\microsoft.powershell.commands.utility.7.2.1.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\microsoft.powershell.consolehost\\7.2.1\\microsoft.powershell.consolehost.7.2.1.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\microsoft.powershell.coreclr.eventing\\7.2.1\\microsoft.powershell.coreclr.eventing.7.2.1.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\microsoft.powershell.markdownrender\\7.2.0\\microsoft.powershell.markdownrender.7.2.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\microsoft.powershell.native\\7.2.0\\microsoft.powershell.native.7.2.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\microsoft.powershell.sdk\\7.2.1\\microsoft.powershell.sdk.7.2.1.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\microsoft.powershell.security\\7.2.1\\microsoft.powershell.security.7.2.1.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\microsoft.win32.registry\\4.7.0\\microsoft.win32.registry.4.7.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\microsoft.win32.registry.accesscontrol\\6.0.0\\microsoft.win32.registry.accesscontrol.6.0.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\microsoft.win32.systemevents\\6.0.0\\microsoft.win32.systemevents.6.0.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\microsoft.windows.compatibility\\6.0.0\\microsoft.windows.compatibility.6.0.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\microsoft.wsman.management\\7.2.1\\microsoft.wsman.management.7.2.1.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\microsoft.wsman.runtime\\7.2.1\\microsoft.wsman.runtime.7.2.1.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\namotion.reflection\\2.0.3\\namotion.reflection.2.0.3.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\newtonsoft.json\\13.0.2\\newtonsoft.json.13.0.2.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\njsonschema\\10.5.2\\njsonschema.10.5.2.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\runtime.any.system.collections\\4.3.0\\runtime.any.system.collections.4.3.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\runtime.any.system.globalization\\4.3.0\\runtime.any.system.globalization.4.3.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\runtime.any.system.io\\4.3.0\\runtime.any.system.io.4.3.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\runtime.any.system.reflection\\4.3.0\\runtime.any.system.reflection.4.3.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\runtime.any.system.reflection.extensions\\4.3.0\\runtime.any.system.reflection.extensions.4.3.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\runtime.any.system.reflection.primitives\\4.3.0\\runtime.any.system.reflection.primitives.4.3.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\runtime.any.system.resources.resourcemanager\\4.3.0\\runtime.any.system.resources.resourcemanager.4.3.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\runtime.any.system.runtime\\4.3.0\\runtime.any.system.runtime.4.3.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\runtime.any.system.runtime.handles\\4.3.0\\runtime.any.system.runtime.handles.4.3.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\runtime.any.system.runtime.interopservices\\4.3.0\\runtime.any.system.runtime.interopservices.4.3.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\runtime.any.system.text.encoding\\4.3.0\\runtime.any.system.text.encoding.4.3.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\runtime.any.system.threading.tasks\\4.3.0\\runtime.any.system.threading.tasks.4.3.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\runtime.linux-arm.runtime.native.system.io.ports\\6.0.0\\runtime.linux-arm.runtime.native.system.io.ports.6.0.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\runtime.linux-arm64.runtime.native.system.io.ports\\6.0.0\\runtime.linux-arm64.runtime.native.system.io.ports.6.0.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\runtime.linux-x64.runtime.native.system.io.ports\\6.0.0\\runtime.linux-x64.runtime.native.system.io.ports.6.0.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\runtime.native.system.data.sqlclient.sni\\4.7.0\\runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\runtime.native.system.io.ports\\6.0.0\\runtime.native.system.io.ports.6.0.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\runtime.osx-arm64.runtime.native.system.io.ports\\6.0.0\\runtime.osx-arm64.runtime.native.system.io.ports.6.0.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\runtime.osx-x64.runtime.native.system.io.ports\\6.0.0\\runtime.osx-x64.runtime.native.system.io.ports.6.0.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\runtime.win-arm64.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\runtime.win-x64.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\runtime.win-x86.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\runtime.win.system.diagnostics.debug\\4.3.0\\runtime.win.system.diagnostics.debug.4.3.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\runtime.win.system.runtime.extensions\\4.3.0\\runtime.win.system.runtime.extensions.4.3.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\system.codedom\\6.0.0\\system.codedom.6.0.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\system.collections.immutable\\5.0.0\\system.collections.immutable.5.0.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\system.componentmodel.composition\\6.0.0\\system.componentmodel.composition.6.0.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\system.componentmodel.composition.registration\\6.0.0\\system.componentmodel.composition.registration.6.0.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\system.configuration.configurationmanager\\6.0.0\\system.configuration.configurationmanager.6.0.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\system.data.odbc\\6.0.0\\system.data.odbc.6.0.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\system.data.oledb\\6.0.0\\system.data.oledb.6.0.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\system.data.sqlclient\\4.8.3\\system.data.sqlclient.4.8.3.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\system.diagnostics.diagnosticsource\\5.0.0\\system.diagnostics.diagnosticsource.5.0.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\system.diagnostics.eventlog\\6.0.0\\system.diagnostics.eventlog.6.0.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\system.diagnostics.performancecounter\\6.0.0\\system.diagnostics.performancecounter.6.0.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\system.directoryservices\\6.0.0\\system.directoryservices.6.0.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\system.directoryservices.accountmanagement\\6.0.0\\system.directoryservices.accountmanagement.6.0.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\system.directoryservices.protocols\\6.0.0\\system.directoryservices.protocols.6.0.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\system.drawing.common\\6.0.0\\system.drawing.common.6.0.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\system.dynamic.runtime\\4.3.0\\system.dynamic.runtime.4.3.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\system.formats.asn1\\6.0.0\\system.formats.asn1.6.0.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\system.io.packaging\\6.0.0\\system.io.packaging.6.0.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\system.io.ports\\6.0.0\\system.io.ports.6.0.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\system.linq.expressions\\4.3.0\\system.linq.expressions.4.3.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\system.management\\6.0.0\\system.management.6.0.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\system.management.automation\\7.2.1\\system.management.automation.7.2.1.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\system.memory\\4.5.4\\system.memory.4.5.4.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\system.net.http.winhttphandler\\6.0.0\\system.net.http.winhttphandler.6.0.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\system.numerics.vectors\\4.5.0\\system.numerics.vectors.4.5.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\system.objectmodel\\4.3.0\\system.objectmodel.4.3.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\system.private.servicemodel\\4.9.0\\system.private.servicemodel.4.9.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\system.private.uri\\4.3.0\\system.private.uri.4.3.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\system.reflection.context\\6.0.0\\system.reflection.context.6.0.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\system.reflection.dispatchproxy\\4.7.1\\system.reflection.dispatchproxy.4.7.1.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\system.reflection.emit\\4.3.0\\system.reflection.emit.4.3.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\system.reflection.emit.ilgeneration\\4.3.0\\system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\system.reflection.emit.lightweight\\4.3.0\\system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\system.reflection.extensions\\4.3.0\\system.reflection.extensions.4.3.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\system.reflection.metadata\\5.0.0\\system.reflection.metadata.5.0.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\system.reflection.typeextensions\\4.3.0\\system.reflection.typeextensions.4.3.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\system.runtime.caching\\6.0.0\\system.runtime.caching.6.0.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\system.security.accesscontrol\\6.0.0\\system.security.accesscontrol.6.0.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\system.security.cryptography.pkcs\\6.0.0\\system.security.cryptography.pkcs.6.0.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\system.security.cryptography.protecteddata\\6.0.0\\system.security.cryptography.protecteddata.6.0.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\system.security.cryptography.xml\\6.0.0\\system.security.cryptography.xml.6.0.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\system.security.permissions\\6.0.0\\system.security.permissions.6.0.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\system.security.principal.windows\\5.0.0\\system.security.principal.windows.5.0.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\system.servicemodel.duplex\\4.9.0\\system.servicemodel.duplex.4.9.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\system.servicemodel.http\\4.9.0\\system.servicemodel.http.4.9.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\system.servicemodel.nettcp\\4.9.0\\system.servicemodel.nettcp.4.9.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\system.servicemodel.primitives\\4.9.0\\system.servicemodel.primitives.4.9.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\system.servicemodel.security\\4.9.0\\system.servicemodel.security.4.9.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\system.servicemodel.syndication\\6.0.0\\system.servicemodel.syndication.6.0.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\system.serviceprocess.servicecontroller\\6.0.0\\system.serviceprocess.servicecontroller.6.0.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\system.speech\\6.0.0\\system.speech.6.0.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\system.text.encoding.codepages\\6.0.0\\system.text.encoding.codepages.6.0.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\system.text.encodings.web\\6.0.0\\system.text.encodings.web.6.0.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\system.threading.accesscontrol\\6.0.0\\system.threading.accesscontrol.6.0.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.4\\system.threading.tasks.extensions.4.5.4.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\system.web.services.description\\4.9.0\\system.web.services.description.4.9.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\35337\\.nuget\\packages\\system.windows.extensions\\6.0.0\\system.windows.extensions.6.0.0.nupkg.sha512"
|
||||||
|
],
|
||||||
|
"logs": []
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user