-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
63 changed files
with
7,190 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>netcoreapp3.1</TargetFramework> | ||
|
||
<IsPackable>false</IsPackable> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.5.0" /> | ||
<PackageReference Include="MSTest.TestAdapter" Version="2.1.0" /> | ||
<PackageReference Include="MSTest.TestFramework" Version="2.1.0" /> | ||
<PackageReference Include="coverlet.collector" Version="1.2.0" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\FakeAgent.Net\FakeAgent.Net.csproj" /> | ||
</ItemGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
using Microsoft.VisualStudio.TestTools.UnitTesting; | ||
using System; | ||
using System.Threading.Tasks; | ||
|
||
namespace FakeAgent.Net.Tests | ||
{ | ||
[TestClass] | ||
public class UnitTest | ||
{ | ||
[TestMethod] | ||
public async Task LoadFromFile() | ||
{ | ||
var isOk = await FakeAgent.TryLoadSource(useLocal: false); | ||
Assert.AreEqual(true, isOk); | ||
for (int i = 0; i < 100; i++) | ||
{ | ||
var agent = FakeAgent.RandomAgent; | ||
Console.WriteLine($"[{i + 1}] {agent}"); | ||
} | ||
|
||
} | ||
} | ||
} |
4 changes: 4 additions & 0 deletions
4
...akeAgent.Net.Tests/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
// <autogenerated /> | ||
using System; | ||
using System.Reflection; | ||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v3.1", FrameworkDisplayName = "")] |
23 changes: 23 additions & 0 deletions
23
FakeAgent/FakeAgent.Net.Tests/obj/Debug/netcoreapp3.1/FakeAgent.Net.Tests.AssemblyInfo.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
//------------------------------------------------------------------------------ | ||
// <auto-generated> | ||
// 此代码由工具生成。 | ||
// 运行时版本:4.0.30319.42000 | ||
// | ||
// 对此文件的更改可能会导致不正确的行为,并且如果 | ||
// 重新生成代码,这些更改将会丢失。 | ||
// </auto-generated> | ||
//------------------------------------------------------------------------------ | ||
|
||
using System; | ||
using System.Reflection; | ||
|
||
[assembly: System.Reflection.AssemblyCompanyAttribute("FakeAgent.Net.Tests")] | ||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] | ||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] | ||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] | ||
[assembly: System.Reflection.AssemblyProductAttribute("FakeAgent.Net.Tests")] | ||
[assembly: System.Reflection.AssemblyTitleAttribute("FakeAgent.Net.Tests")] | ||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] | ||
|
||
// 由 MSBuild WriteCodeFragment 类生成。 | ||
|
1 change: 1 addition & 0 deletions
1
.../FakeAgent.Net.Tests/obj/Debug/netcoreapp3.1/FakeAgent.Net.Tests.AssemblyInfoInputs.cache
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
b5e2214f6fc43d2ce956546ad08d43c1724ff59a |
Binary file added
BIN
+65.8 KB
FakeAgent/FakeAgent.Net.Tests/obj/Debug/netcoreapp3.1/FakeAgent.Net.Tests.assets.cache
Binary file not shown.
Empty file.
1 change: 1 addition & 0 deletions
1
...gent.Net.Tests/obj/Debug/netcoreapp3.1/FakeAgent.Net.Tests.csproj.CoreCompileInputs.cache
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
131cd92186bc42f3ac8d01bd8ba474ae93dcb706 |
98 changes: 98 additions & 0 deletions
98
...keAgent.Net.Tests/obj/Debug/netcoreapp3.1/FakeAgent.Net.Tests.csproj.FileListAbsolute.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\FakeAgent.Net.Tests.deps.json | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\FakeAgent.Net.Tests.runtimeconfig.json | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\FakeAgent.Net.Tests.runtimeconfig.dev.json | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\FakeAgent.Net.Tests.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\FakeAgent.Net.Tests.pdb | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\Microsoft.VisualStudio.CodeCoverage.Shim.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\Microsoft.TestPlatform.CoreUtilities.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\Microsoft.TestPlatform.PlatformAbstractions.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\Microsoft.VisualStudio.TestPlatform.ObjectModel.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\Microsoft.TestPlatform.CommunicationUtilities.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\Microsoft.TestPlatform.CrossPlatEngine.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\Microsoft.TestPlatform.Utilities.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\Microsoft.VisualStudio.TestPlatform.Common.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\testhost.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\Microsoft.VisualStudio.TestPlatform.TestFramework.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\Newtonsoft.Json.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\NuGet.Frameworks.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\cs\Microsoft.TestPlatform.CoreUtilities.resources.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\cs\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\de\Microsoft.TestPlatform.CoreUtilities.resources.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\de\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\es\Microsoft.TestPlatform.CoreUtilities.resources.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\es\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\fr\Microsoft.TestPlatform.CoreUtilities.resources.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\fr\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\it\Microsoft.TestPlatform.CoreUtilities.resources.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\it\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\ja\Microsoft.TestPlatform.CoreUtilities.resources.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\ja\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\ko\Microsoft.TestPlatform.CoreUtilities.resources.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\ko\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\pl\Microsoft.TestPlatform.CoreUtilities.resources.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\pl\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\pt-BR\Microsoft.TestPlatform.CoreUtilities.resources.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\pt-BR\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\ru\Microsoft.TestPlatform.CoreUtilities.resources.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\ru\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\tr\Microsoft.TestPlatform.CoreUtilities.resources.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\tr\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\zh-Hans\Microsoft.TestPlatform.CoreUtilities.resources.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\zh-Hans\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\zh-Hant\Microsoft.TestPlatform.CoreUtilities.resources.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\zh-Hant\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\cs\Microsoft.TestPlatform.CommunicationUtilities.resources.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\cs\Microsoft.TestPlatform.CrossPlatEngine.resources.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\cs\Microsoft.VisualStudio.TestPlatform.Common.resources.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\de\Microsoft.TestPlatform.CommunicationUtilities.resources.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\de\Microsoft.TestPlatform.CrossPlatEngine.resources.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\de\Microsoft.VisualStudio.TestPlatform.Common.resources.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\es\Microsoft.TestPlatform.CommunicationUtilities.resources.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\es\Microsoft.TestPlatform.CrossPlatEngine.resources.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\es\Microsoft.VisualStudio.TestPlatform.Common.resources.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\fr\Microsoft.TestPlatform.CommunicationUtilities.resources.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\fr\Microsoft.TestPlatform.CrossPlatEngine.resources.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\fr\Microsoft.VisualStudio.TestPlatform.Common.resources.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\it\Microsoft.TestPlatform.CommunicationUtilities.resources.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\it\Microsoft.TestPlatform.CrossPlatEngine.resources.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\it\Microsoft.VisualStudio.TestPlatform.Common.resources.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\ja\Microsoft.TestPlatform.CommunicationUtilities.resources.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\ja\Microsoft.TestPlatform.CrossPlatEngine.resources.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\ja\Microsoft.VisualStudio.TestPlatform.Common.resources.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\ko\Microsoft.TestPlatform.CommunicationUtilities.resources.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\ko\Microsoft.TestPlatform.CrossPlatEngine.resources.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\ko\Microsoft.VisualStudio.TestPlatform.Common.resources.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\pl\Microsoft.TestPlatform.CommunicationUtilities.resources.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\pl\Microsoft.TestPlatform.CrossPlatEngine.resources.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\pl\Microsoft.VisualStudio.TestPlatform.Common.resources.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\pt-BR\Microsoft.TestPlatform.CommunicationUtilities.resources.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\pt-BR\Microsoft.TestPlatform.CrossPlatEngine.resources.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\pt-BR\Microsoft.VisualStudio.TestPlatform.Common.resources.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\ru\Microsoft.TestPlatform.CommunicationUtilities.resources.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\ru\Microsoft.TestPlatform.CrossPlatEngine.resources.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\ru\Microsoft.VisualStudio.TestPlatform.Common.resources.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\tr\Microsoft.TestPlatform.CommunicationUtilities.resources.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\tr\Microsoft.TestPlatform.CrossPlatEngine.resources.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\tr\Microsoft.VisualStudio.TestPlatform.Common.resources.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\zh-Hans\Microsoft.TestPlatform.CommunicationUtilities.resources.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\zh-Hans\Microsoft.TestPlatform.CrossPlatEngine.resources.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\zh-Hans\Microsoft.VisualStudio.TestPlatform.Common.resources.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\zh-Hant\Microsoft.TestPlatform.CommunicationUtilities.resources.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\zh-Hant\Microsoft.TestPlatform.CrossPlatEngine.resources.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\zh-Hant\Microsoft.VisualStudio.TestPlatform.Common.resources.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\FakeAgent.Net.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\FakeAgent.Net.pdb | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\obj\Debug\netcoreapp3.1\FakeAgent.Net.Tests.csprojAssemblyReference.cache | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\obj\Debug\netcoreapp3.1\FakeAgent.Net.Tests.AssemblyInfoInputs.cache | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\obj\Debug\netcoreapp3.1\FakeAgent.Net.Tests.AssemblyInfo.cs | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\obj\Debug\netcoreapp3.1\FakeAgent.Net.Tests.csproj.CoreCompileInputs.cache | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\obj\Debug\netcoreapp3.1\FakeAgent.Net.Tests.csproj.CopyComplete | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\obj\Debug\netcoreapp3.1\FakeAgent.Net.Tests.dll | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\obj\Debug\netcoreapp3.1\FakeAgent.Net.Tests.pdb | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\obj\Debug\netcoreapp3.1\FakeAgent.Net.Tests.genruntimeconfig.cache | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\Cache\herokuapp.source-0.1.11.json | ||
D:\github\benderpan\FakeAgent.Net\FakeAgent\FakeAgent.Net.Tests\bin\Debug\netcoreapp3.1\AngleSharp.dll |
Binary file added
BIN
+114 KB
...Agent.Net.Tests/obj/Debug/netcoreapp3.1/FakeAgent.Net.Tests.csprojAssemblyReference.cache
Binary file not shown.
Binary file added
BIN
+6.5 KB
FakeAgent/FakeAgent.Net.Tests/obj/Debug/netcoreapp3.1/FakeAgent.Net.Tests.dll
Binary file not shown.
1 change: 1 addition & 0 deletions
1
...nt/FakeAgent.Net.Tests/obj/Debug/netcoreapp3.1/FakeAgent.Net.Tests.genruntimeconfig.cache
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
aca957f94ad5c178d9121f67400d5583889b6cf6 |
Binary file added
BIN
+1.24 KB
FakeAgent/FakeAgent.Net.Tests/obj/Debug/netcoreapp3.1/FakeAgent.Net.Tests.pdb
Binary file not shown.
Oops, something went wrong.