Voile.Common is now Voile.Patchouli
This commit is contained in:
parent
0b851165d8
commit
82dabaabcb
9
.gitignore
vendored
9
.gitignore
vendored
@ -27,3 +27,12 @@
|
|||||||
/Voile.Common.Tests/bin
|
/Voile.Common.Tests/bin
|
||||||
/Voile.Common.Tests/obj
|
/Voile.Common.Tests/obj
|
||||||
/.idea
|
/.idea
|
||||||
|
/Voile.Patchouli.Tests/bin/Debug/net8.0
|
||||||
|
/Voile.Patchouli.Tests/obj/Debug/net8.0
|
||||||
|
/Voile.Patchouli.Tests/obj
|
||||||
|
/Voile.Patchouli/bin/Debug/net8.0
|
||||||
|
/Voile.Patchouli/obj/Debug/net8.0
|
||||||
|
/Voile.Patchouli/obj
|
||||||
|
/Voile.Storage.Oracle/bin/Debug/net8.0
|
||||||
|
/Voile.Storage.Postgresql/bin/Debug/net8.0
|
||||||
|
/Voile.Storage.SqlServer/bin/Debug/net8.0
|
||||||
|
|||||||
33
Voile.Patchouli.Tests/Voile.Patchouli.Tests.csproj
Normal file
33
Voile.Patchouli.Tests/Voile.Patchouli.Tests.csproj
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<TargetFramework>net8.0</TargetFramework>
|
||||||
|
<LangVersion>latest</LangVersion>
|
||||||
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
|
<Nullable>enable</Nullable>
|
||||||
|
<EnableMSTestRunner>true</EnableMSTestRunner>
|
||||||
|
<OutputType>Exe</OutputType>
|
||||||
|
<TestingPlatformDotnetTestSupport>true</TestingPlatformDotnetTestSupport>
|
||||||
|
<!--
|
||||||
|
Displays error on console in addition to the log file. Note that this feature comes with a performance impact.
|
||||||
|
For more information, visit https://learn.microsoft.com/dotnet/core/testing/unit-testing-platform-integration-dotnet-test#show-failure-per-test
|
||||||
|
-->
|
||||||
|
<TestingPlatformShowTestsFailure>true</TestingPlatformShowTestsFailure>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
|
||||||
|
<PackageReference Include="Microsoft.Testing.Extensions.CodeCoverage" Version="17.12.6" />
|
||||||
|
<PackageReference Include="Microsoft.Testing.Extensions.TrxReport" Version="1.4.3" />
|
||||||
|
<PackageReference Include="MSTest" Version="3.6.4" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<ProjectReference Include="..\Voile.Patchouli\Voile.Patchouli.csproj" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<Using Include="Microsoft.VisualStudio.TestTools.UnitTesting" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
</Project>
|
||||||
9
Voile.Patchouli/Voile.Patchouli.csproj
Normal file
9
Voile.Patchouli/Voile.Patchouli.csproj
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<TargetFramework>net8.0</TargetFramework>
|
||||||
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
|
<Nullable>enable</Nullable>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
</Project>
|
||||||
@ -6,8 +6,4 @@
|
|||||||
<Nullable>enable</Nullable>
|
<Nullable>enable</Nullable>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
|
||||||
<ProjectReference Include="..\Voile.Common\Voile.Common.csproj" />
|
|
||||||
</ItemGroup>
|
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|||||||
@ -6,8 +6,4 @@
|
|||||||
<Nullable>enable</Nullable>
|
<Nullable>enable</Nullable>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
|
||||||
<ProjectReference Include="..\Voile.Common\Voile.Common.csproj" />
|
|
||||||
</ItemGroup>
|
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|||||||
@ -6,8 +6,4 @@
|
|||||||
<Nullable>enable</Nullable>
|
<Nullable>enable</Nullable>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
|
||||||
<ProjectReference Include="..\Voile.Common\Voile.Common.csproj" />
|
|
||||||
</ItemGroup>
|
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|||||||
@ -1,8 +1,10 @@
|
|||||||
<Solution>
|
<Solution>
|
||||||
<Project Path="../skyscraper8/skyscraper8/skyscraper8.csproj" />
|
<Project Path="../skyscraper8/skyscraper8/skyscraper8.csproj">
|
||||||
|
<BuildDependency Project="Voile.Patchouli/Voile.Patchouli.csproj" />
|
||||||
|
</Project>
|
||||||
<Project Path="Sophia.Net.DRM/Sophia.Net.DRM.csproj" />
|
<Project Path="Sophia.Net.DRM/Sophia.Net.DRM.csproj" />
|
||||||
<Project Path="Voile.Common.Tests\Voile.Common.Tests.csproj" Type="Classic C#" />
|
<Project Path="Voile.Patchouli.Tests/Voile.Patchouli.Tests.csproj" Id="630fd7bd-117c-4407-b2e6-7dd36f305164" />
|
||||||
<Project Path="Voile.Common\Voile.Common.csproj" Type="Classic C#" />
|
<Project Path="Voile.Patchouli/Voile.Patchouli.csproj" Id="292d7909-c4ae-4345-b26e-34053d08ca96" />
|
||||||
<Project Path="Voile.Storage.Oracle/Voile.Storage.Oracle.csproj" />
|
<Project Path="Voile.Storage.Oracle/Voile.Storage.Oracle.csproj" />
|
||||||
<Project Path="Voile.Storage.Postgresql/Voile.Storage.Postgresql.csproj" />
|
<Project Path="Voile.Storage.Postgresql/Voile.Storage.Postgresql.csproj" />
|
||||||
<Project Path="Voile.Storage.SqlServer/Voile.Storage.SqlServer.csproj" />
|
<Project Path="Voile.Storage.SqlServer/Voile.Storage.SqlServer.csproj" />
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user