init

parent a65e787e
**/wwwroot/libs/** linguist-vendored
## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.
# User-specific files
*.suo
*.user
*.userosscache
*.sln.docstates
# User-specific files (MonoDevelop/Xamarin Studio)
*.userprefs
# Build results
[Dd]ebug/
[Dd]ebugPublic/
[Rr]elease/
[Rr]eleases/
x64/
x86/
bld/
[Bb]in/
[Oo]bj/
[Ll]og/
# Visual Studio 2015 cache/options directory
.vs/
# Uncomment if you have tasks that create the project's static files in wwwroot
#wwwroot/
# MSTest test Results
[Tt]est[Rr]esult*/
[Bb]uild[Ll]og.*
# NUNIT
*.VisualState.xml
TestResult.xml
# Build Results of an ATL Project
[Dd]ebugPS/
[Rr]eleasePS/
dlldata.c
# DNX
project.lock.json
artifacts/
*_i.c
*_p.c
*_i.h
*.ilk
*.meta
*.obj
*.pch
*.pdb
*.pgc
*.pgd
*.rsp
*.sbr
*.tlb
*.tli
*.tlh
*.tmp
*.tmp_proj
*.log
*.vspscc
*.vssscc
.builds
*.pidb
*.svclog
*.scc
# Chutzpah Test files
_Chutzpah*
# Visual C++ cache files
ipch/
*.aps
*.ncb
*.opendb
*.opensdf
*.sdf
*.cachefile
*.VC.db
*.VC.VC.opendb
# Visual Studio profiler
*.psess
*.vsp
*.vspx
*.sap
# TFS 2012 Local Workspace
$tf/
# Guidance Automation Toolkit
*.gpState
# ReSharper is a .NET coding add-in
_ReSharper*/
*.[Rr]e[Ss]harper
*.DotSettings.user
# JustCode is a .NET coding add-in
.JustCode
# TeamCity is a build add-in
_TeamCity*
# DotCover is a Code Coverage Tool
*.dotCover
# NCrunch
_NCrunch_*
.*crunch*.local.xml
nCrunchTemp_*
# MightyMoose
*.mm.*
AutoTest.Net/
# Web workbench (sass)
.sass-cache/
# Installshield output folder
[Ee]xpress/
# DocProject is a documentation generator add-in
DocProject/buildhelp/
DocProject/Help/*.HxT
DocProject/Help/*.HxC
DocProject/Help/*.hhc
DocProject/Help/*.hhk
DocProject/Help/*.hhp
DocProject/Help/Html2
DocProject/Help/html
# Click-Once directory
publish/
# Publish Web Output
*.[Pp]ublish.xml
*.azurePubxml
# TODO: Comment the next line if you want to checkin your web deploy settings
# but database connection strings (with potential passwords) will be unencrypted
#*.pubxml
*.publishproj
# Microsoft Azure Web App publish settings. Comment the next line if you want to
# checkin your Azure Web App publish settings, but sensitive information contained
# in these scripts will be unencrypted
PublishScripts/
# NuGet Packages
*.nupkg
# The packages folder can be ignored because of Package Restore
**/packages/*
# except build/, which is used as an MSBuild target.
!**/packages/build/
# Uncomment if necessary however generally it will be regenerated when needed
#!**/packages/repositories.config
# NuGet v3's project.json files produces more ignoreable files
*.nuget.props
*.nuget.targets
# Microsoft Azure Build Output
csx/
*.build.csdef
# Microsoft Azure Emulator
ecf/
rcf/
# Windows Store app package directories and files
AppPackages/
BundleArtifacts/
Package.StoreAssociation.xml
_pkginfo.txt
# Visual Studio cache files
# files ending in .cache can be ignored
*.[Cc]ache
# but keep track of directories ending in .cache
!*.[Cc]ache/
# Others
ClientBin/
~$*
*~
*.dbmdl
*.dbproj.schemaview
*.pfx
*.publishsettings
node_modules/
orleans.codegen.cs
# Since there are multiple workflows, uncomment next line to ignore bower_components
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
#bower_components/
# RIA/Silverlight projects
Generated_Code/
# Backup & report files from converting an old project file
# to a newer Visual Studio version. Backup files are not needed,
# because we have git ;-)
_UpgradeReport_Files/
Backup*/
UpgradeLog*.XML
UpgradeLog*.htm
# SQL Server files
*.mdf
*.ldf
# Business Intelligence projects
*.rdl.data
*.bim.layout
*.bim_*.settings
# Microsoft Fakes
FakesAssemblies/
# GhostDoc plugin setting file
*.GhostDoc.xml
# Node.js Tools for Visual Studio
.ntvs_analysis.dat
# Visual Studio 6 build log
*.plg
# Visual Studio 6 workspace options file
*.opt
# Visual Studio LightSwitch build output
**/*.HTMLClient/GeneratedArtifacts
**/*.DesktopClient/GeneratedArtifacts
**/*.DesktopClient/ModelManifest.xml
**/*.Server/GeneratedArtifacts
**/*.Server/ModelManifest.xml
_Pvt_Extensions
# Paket dependency manager
.paket/paket.exe
paket-files/
# FAKE - F# Make
.fake/
# JetBrains Rider
.idea/
*.sln.iml
# PerformanceNew
src/PerformanceNew.Web/Logs/*
src/PerformanceNew.Web.Host/Logs/*
src/PerformanceNew.IdentityServer/Logs/*
src/PerformanceNew.HttpApi.Host/Logs/*
src/PerformanceNew.HttpApi.HostWithIds/Logs/*
src/PerformanceNew.DbMigrator/Logs/*
src/PerformanceNew.Blazor.Server/Logs/*
src/PerformanceNew.Blazor.Server.Tiered/Logs/*
# Use abp install-libs to restore.
**/wwwroot/libs/*
using Microsoft.AspNetCore.Mvc;
namespace Samples.Api.Controllers
{
[ApiController]
[Route("[controller]")]
public class HomeController : ControllerBase
{
}
}
\ No newline at end of file
var builder = WebApplication.CreateBuilder(args);
// Add services to the container.
builder.Services.AddControllers();
// Learn more about configuring Swagger/OpenAPI at https://aka.ms/aspnetcore/swashbuckle
builder.Services.AddEndpointsApiExplorer();
builder.Services.AddSwaggerGen();
var app = builder.Build();
// Configure the HTTP request pipeline.
if (app.Environment.IsDevelopment())
{
app.UseSwagger();
app.UseSwaggerUI();
}
app.UseAuthorization();
app.MapControllers();
app.Run();
{
"$schema": "https://json.schemastore.org/launchsettings.json",
"iisSettings": {
"windowsAuthentication": false,
"anonymousAuthentication": true,
"iisExpress": {
"applicationUrl": "http://localhost:26920",
"sslPort": 0
}
},
"profiles": {
"Samples.Api": {
"commandName": "Project",
"dotnetRunMessages": true,
"launchBrowser": true,
"launchUrl": "swagger",
"applicationUrl": "http://localhost:5120",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
},
"IIS Express": {
"commandName": "IISExpress",
"launchBrowser": true,
"launchUrl": "swagger",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
}
}
}
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.2.3" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Samples.BLL\Samples.BLL.csproj" />
</ItemGroup>
</Project>
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
}
}
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*"
}
namespace Samples.BLL
{
public interface ITestService
{
Task<decimal> GetBalanceAsync(long userId);
Task<string> JoinGroup(string diagnosis, string operation, string 实际入组, string 期望入组);
}
public class TestService : ITestService
{
private readonly IUserService _service;
public TestService(IUserService service)
{
_service = service;
}
public Task<decimal> GetBalanceAsync(long userId)
{
var user = _service.Get(userId);
if (user.UserId > 100)
return Task.FromResult(10000m);
return Task.FromResult(200m);
}
public Task<string> JoinGroup(string diagnosis, string operation, string 实际入组, string 期望入组)
{
return Task.FromResult(实际入组);
}
}
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Samples.BLL
{
public interface IUserService
{
bool Exists(long userId);
UserIdentity Get(long userId);
}
public class UserService : IUserService
{
public bool Exists(long userId)
{
return userId > 100;
}
public UserIdentity Get(long userId)
{
return new UserIdentity { UserId = userId, Name = DateTime.Now.ToString() };
}
}
public class UserIdentity
{
public long UserId { get; set; }
public string Name { get; set; }
}
}
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Samples.DLL\Samples.DLL.csproj" />
</ItemGroup>
</Project>
using System.Data;
using System.Reflection;
using Xunit.Sdk;
[AttributeUsage(AttributeTargets.Method, AllowMultiple = false, Inherited = false)]
public sealed class ExcelDataAttribute : DataAttribute
{
public ExcelDataAttribute(string fileName, string sheetName)
{
FileName = fileName;
SheetName = sheetName;
}
public string FileName { get; private set; }
public string SheetName { get; private set; }
public override IEnumerable<object[]> GetData(MethodInfo methodInfo)
{
if (methodInfo == null)
{
throw new ArgumentNullException(nameof(methodInfo));
}
ParameterInfo[] parameters = methodInfo.GetParameters();
return DataSource(FileName, SheetName, parameters.Select(p => p.ParameterType).ToArray());
}
private IEnumerable<object[]> DataSource(string fileName, string sheetName, Type[] parameterTypes)
{
var path = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, fileName);
var dataSet = ExcelHelper.GetDataSet(fileName);
if (!string.IsNullOrEmpty(sheetName) && dataSet.Tables.Contains(sheetName))
{
var rows = dataSet.Tables[sheetName].Rows;
foreach (DataRow row in rows)
{
yield return ConvertParameters(row.ItemArray, parameterTypes);
}
}
}
private static object[] ConvertParameters(object[] values, Type[] parameterTypes)
{
if (parameterTypes.Length == 0)
throw new ArgumentNullException(nameof(parameterTypes));
object[] result = new object[values.Length];
for (int i = 0; i < values.Length; i++)
result[i] = Convert.ChangeType(values[i], parameterTypes[i]);
return result;
}
}

using System.Data;
using OfficeOpenXml;
public class ExcelHelper
{
public static DataSet GetDataSet(string path)
{
if (!File.Exists(path)) throw new FileNotFoundException(path);
DataSet dataSet = new DataSet();
using (ExcelPackage package = new ExcelPackage(new FileInfo(path)))
{
foreach (var sheet in package.Workbook.Worksheets)
{
DataTable table = new DataTable();
table.TableName = sheet.Name;
for (int col = 1, k = sheet.Dimension.End.Column; col <= k; col++)
{
var cellCol = sheet.Cells[1, col];
if (!string.IsNullOrEmpty(cellCol?.Text))
table.Columns.Add(new DataColumn(cellCol.Text));
}
for (int row = 2, n = sheet.Dimension.End.Row; row <= n; row++)
{
var dataRow = table.NewRow();
for (int col = 1, k = sheet.Dimension.End.Column; col <= k; col++)
{
var cellVal = sheet.Cells[row, col];
var cellCol = sheet.Cells[1, col];
if (!string.IsNullOrEmpty(cellCol?.Text))
{
dataRow[cellCol.Text] = cellVal?.Value;
}
}
table.Rows.Add(dataRow);
}
dataSet.Tables.Add(table);
}
}
return dataSet;
}
public static List<Dictionary<string, object>> GetData(string path, string sheetName)
{
var table = new List<Dictionary<string, object>>();
if (!File.Exists(path)) throw new FileNotFoundException(path);
using (ExcelPackage package = new ExcelPackage(new FileInfo(path)))
{
var sheet = package.Workbook.Worksheets.FirstOrDefault(w => w.Name.Equals(sheetName, StringComparison.OrdinalIgnoreCase));
if (sheet == null) throw new ArgumentException($"{nameof(sheetName)}无效");
for (int row = 2, n = sheet.Dimension.End.Row; row <= n; row++)
{
var dataRow = new Dictionary<string, object>();
for (int col = 1, k = sheet.Dimension.End.Column; col <= k; col++)
{
var cellVal = sheet.Cells[row, col];
var cellCol = sheet.Cells[1, col];
if (!string.IsNullOrEmpty(cellCol?.Text) && cellVal?.Value != null)
{
dataRow[cellCol.Text] = cellVal?.Value;
}
}
table.Add(dataRow);
}
}
return table;
}
}
\ No newline at end of file
using Xunit.Abstractions;
using Xunit.Sdk;
namespace PerformanceNew.CoreBusiness.Tests
{
[AttributeUsage(AttributeTargets.Method, AllowMultiple = false)]
public class TestPriorityAttribute : Attribute
{
public int Priority { get; private set; }
public TestPriorityAttribute(int priority) => Priority = priority;
}
public class PriorityOrderer : ITestCaseOrderer
{
public IEnumerable<TTestCase> OrderTestCases<TTestCase>(IEnumerable<TTestCase> testCases) where TTestCase : ITestCase
{
string assemblyName = typeof(TestPriorityAttribute).AssemblyQualifiedName!;
var sortedMethods = new SortedDictionary<int, List<TTestCase>>();
foreach (TTestCase testCase in testCases)
{
int priority = testCase.TestMethod.Method
.GetCustomAttributes(assemblyName)
.FirstOrDefault()
?.GetNamedArgument<int>(nameof(TestPriorityAttribute.Priority)) ?? 0;
GetOrCreate(sortedMethods, priority).Add(testCase);
}
foreach (TTestCase testCase in
sortedMethods.Keys.SelectMany(
priority => sortedMethods[priority].OrderBy(
testCase => testCase.TestMethod.Method.Name)))
{
yield return testCase;
}
}
private static TValue GetOrCreate<TKey, TValue>(IDictionary<TKey, TValue> dictionary, TKey key)
where TKey : struct
where TValue : new()
{
return dictionary.TryGetValue(key, out TValue? result) ? result : (dictionary[key] = new TValue());
}
}
}
\ No newline at end of file
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AutoMapper" Version="11.0.1" />
<PackageReference Include="EPPlus" Version="4.5.3.2" />
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="6.0.6" />
<PackageReference Include="Microsoft.Data.Sqlite" Version="6.0.6" />
<PackageReference Include="Microsoft.Data.Sqlite.Core" Version="6.0.6" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.6" />
<PackageReference Include="Microsoft.Extensions.Configuration" Version="6.0.1" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="6.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="6.0.6" />
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="6.0.6" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.2.0" />
<PackageReference Include="Moq" Version="4.18.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.2.0" />
<PackageReference Include="System.Data.OleDb" Version="6.0.0" />
<PackageReference Include="coverlet.collector" Version="3.1.2" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3" />
<PackageReference Include="EPPlus" Version="4.5.3.2" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Samples.BLL\Samples.BLL.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="Data\ExcelDataSource.xlsx">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>
using System.Data;
using AutoMapper;
using Microsoft.Data.Sqlite;
using Microsoft.EntityFrameworkCore;
using Moq;
using Samples.DLL;
using Xunit;
namespace Samples.BLL.Tests
{
public class TestServiceTests
{
[Fact(DisplayName = "数据驱动测试--不依赖外部数据")]
public async Task GetBalanceAsyncTest()
{
var mock = new Mock<IUserService>();
mock.Setup(w => w.Get(12321)).Returns(new UserIdentity { UserId = 1, Name = "MockName1" });
mock.Setup(w => w.Get(321)).Returns(new UserIdentity { UserId = 1000, Name = "MockName2" });
var service = new TestService(mock.Object);
Assert.True(await service.GetBalanceAsync(321) == 10000);
Assert.True(await service.GetBalanceAsync(12321) == 200);
}
[Theory(DisplayName = "数据驱动测试--外部传入数据")]
[InlineData(100, 200)]
[InlineData(2345, 10000)]
public async Task GetBalanceAsync_Theory_Test(long userId, decimal result)
{
var mock = new Mock<IUserService>();
mock.Setup(w => w.Get(userId)).Returns(new UserIdentity { UserId = userId, Name = "MockName2" });
var service = new TestService(mock.Object);
Assert.True(await service.GetBalanceAsync(userId) == result);
}
[Theory(DisplayName = "数据驱动测试--外部Excel数据")]
[ExcelData("Data\\ExcelDataSource.xlsx", "TestData")]
public async Task GetBalanceAsync_Excel_Test(int id, string 主诊断编码, string 主诊断名称, string 手术编码, string 手术名称, string 实际入组, string 期望入组)
{
var mock = new Mock<IUserService>();
mock.Setup(w => w.Get(0)).Returns(new UserIdentity { UserId = 0, Name = "MockName2" });
var service = new TestService(mock.Object);
//Assert.True(await service.JoinGroup(主诊断编码, 手术编码, 实际入组, 期望入组) == 期望入组);
Assert.True(await service.JoinGroup(主诊断编码, 手术编码, 实际入组, 期望入组) == 实际入组);
}
[Fact(DisplayName = "数据驱动测试--外部 MEMORY 数据")]
public async Task GetBalanceAsync_Inmemory_Test()
{
var _connection = new SqliteConnection("Filename=:memory:");
if (_connection.State != ConnectionState.Open) _connection.Open();
var _contextOptions = new DbContextOptionsBuilder<TestDbContext>().UseSqlite(_connection).Options;
using var context = new TestDbContext(_contextOptions);
context.Database.EnsureCreated();
Init<ExcelData>(context, sheetName: "TestData").Wait();
context.SaveChanges();
var mock = new Mock<IUserService>();
mock.Setup(w => w.Get(0)).Returns(new UserIdentity { UserId = 0, Name = "MockName2" });
var service = new TestService(mock.Object);
foreach (var item in context.ExcelData.ToList())
{
Assert.True(await service.JoinGroup(item.主诊断编码, item.手术编码, item.实际入组, item.期望入组) == item.实际入组);
}
}
private async Task Init<TEntity>(DbContext context, string sheetName) where TEntity : class
{
var path = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "Data", "ExcelDataSource.xlsx");
var datas = ExcelHelper.GetData(path, sheetName);
var config = new MapperConfiguration(cfg => { });
var mapper = config.CreateMapper();
var objs = mapper.Map<List<TEntity>>(datas);
await context.Set<TEntity>().AddRangeAsync(objs);
}
}
}
\ No newline at end of file
using Xunit;
using Samples.BLL;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Moq;
using Xunit.Abstractions;
namespace Samples.BLL.Tests
{
public class UserServiceTests
{
private readonly ITestOutputHelper _output;
public UserServiceTests(ITestOutputHelper output)
{
_output = output;
}
[Fact(DisplayName = "始终正确")]
public void Test()
{
Assert.True(1 == 1);
}
[Fact(DisplayName = "模拟--存在")]
public void ExistTest()
{
var mock = new Mock<IUserService>();
mock.Setup(w => w.Exists(12321)).Returns(true);
Assert.True(mock.Object.Exists(12321));
}
[Fact(DisplayName = "模拟返回")]
public void GetTest()
{
var mock = new Mock<IUserService>();
mock.Setup(w => w.Get(12321)).Returns(new UserIdentity
{
UserId = 1,
Name = "MockName"
});
Assert.Equal(1, mock.Object.Get(12321).UserId);
}
}
}
\ No newline at end of file
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.6" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="6.0.6">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="6.0.6">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="6.0.1" />
<PackageReference Include="Serilog" Version="2.11.0" />
<PackageReference Include="Masuit.Tools.Core" Version="2.5.2" />
</ItemGroup>
</Project>
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Microsoft.EntityFrameworkCore;
namespace Samples.DLL
{
public class TestDbContext : DbContext
{
public TestDbContext(DbContextOptions options) : base(options)
{
}
public DbSet<ExcelData> ExcelData { get; set; }
protected override void OnModelCreating(ModelBuilder modelBuilder)
{
modelBuilder.Entity<ExcelData>(entity =>
{
entity.ToTable("alt_allot");
entity.HasComment("分配方案");
entity.Property(e => e.Id).HasColumnType("bigint(20)").ValueGeneratedNever().HasComment("唯一标识");
entity.Property(e => e.主诊断编码).HasMaxLength(50).HasComment("主诊断编码");
entity.Property(e => e.主诊断名称).HasMaxLength(50).HasComment("主诊断名称");
entity.Property(e => e.手术编码).HasMaxLength(50).HasComment("手术编码");
entity.Property(e => e.手术名称).HasMaxLength(50).HasComment("手术名称");
entity.Property(e => e.实际入组).HasMaxLength(50).HasComment("实际入组");
entity.Property(e => e.期望入组).HasMaxLength(50).HasComment("期望入组");
});
base.OnModelCreating(modelBuilder);
}
}
public class ExcelData
{
public long Id { get; set; }
public string 主诊断编码 { get; set; }
public string 主诊断名称 { get; set; }
public string 手术编码 { get; set; }
public string 手术名称 { get; set; }
public string 实际入组 { get; set; }
public string 期望入组 { get; set; }
}
}

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.2.32630.192
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Samples.Api", "Samples.Api\Samples.Api.csproj", "{DE6467CB-E811-4CF1-8129-858C14198AD1}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Samples.BLL", "Samples.BLL\Samples.BLL.csproj", "{03362D65-FC3B-41C9-AE30-3608802C67D8}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Samples.DLL", "Samples.DLL\Samples.DLL.csproj", "{B0D86F83-2D93-4B47-9281-4F6A745030E8}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Samples.BLLTests", "Samples.BLLTests\Samples.BLLTests.csproj", "{FB2EEE4E-353C-4D83-AB8D-24727FF5CD70}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{4AC105D8-9002-40DC-8998-540F06AFEBAD}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "test", "test", "{A54F5D01-3402-4FDA-ABC3-304573BEA7F4}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{DE6467CB-E811-4CF1-8129-858C14198AD1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{DE6467CB-E811-4CF1-8129-858C14198AD1}.Debug|Any CPU.Build.0 = Debug|Any CPU
{DE6467CB-E811-4CF1-8129-858C14198AD1}.Release|Any CPU.ActiveCfg = Release|Any CPU
{DE6467CB-E811-4CF1-8129-858C14198AD1}.Release|Any CPU.Build.0 = Release|Any CPU
{03362D65-FC3B-41C9-AE30-3608802C67D8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{03362D65-FC3B-41C9-AE30-3608802C67D8}.Debug|Any CPU.Build.0 = Debug|Any CPU
{03362D65-FC3B-41C9-AE30-3608802C67D8}.Release|Any CPU.ActiveCfg = Release|Any CPU
{03362D65-FC3B-41C9-AE30-3608802C67D8}.Release|Any CPU.Build.0 = Release|Any CPU
{B0D86F83-2D93-4B47-9281-4F6A745030E8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{B0D86F83-2D93-4B47-9281-4F6A745030E8}.Debug|Any CPU.Build.0 = Debug|Any CPU
{B0D86F83-2D93-4B47-9281-4F6A745030E8}.Release|Any CPU.ActiveCfg = Release|Any CPU
{B0D86F83-2D93-4B47-9281-4F6A745030E8}.Release|Any CPU.Build.0 = Release|Any CPU
{FB2EEE4E-353C-4D83-AB8D-24727FF5CD70}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{FB2EEE4E-353C-4D83-AB8D-24727FF5CD70}.Debug|Any CPU.Build.0 = Debug|Any CPU
{FB2EEE4E-353C-4D83-AB8D-24727FF5CD70}.Release|Any CPU.ActiveCfg = Release|Any CPU
{FB2EEE4E-353C-4D83-AB8D-24727FF5CD70}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{DE6467CB-E811-4CF1-8129-858C14198AD1} = {4AC105D8-9002-40DC-8998-540F06AFEBAD}
{03362D65-FC3B-41C9-AE30-3608802C67D8} = {4AC105D8-9002-40DC-8998-540F06AFEBAD}
{B0D86F83-2D93-4B47-9281-4F6A745030E8} = {4AC105D8-9002-40DC-8998-540F06AFEBAD}
{FB2EEE4E-353C-4D83-AB8D-24727FF5CD70} = {A54F5D01-3402-4FDA-ABC3-304573BEA7F4}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {6ECEF463-36BC-4198-99B8-E94FA43BF440}
EndGlobalSection
EndGlobal
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment