This commit is contained in:
xiaolipro 2024-05-15 21:27:52 +08:00
parent 0e80d236dc
commit a6c5c7c159
5 changed files with 52 additions and 0 deletions

5
global.json Normal file
View File

@ -0,0 +1,5 @@
{
"sdk": {
"version": "8.0.100"
}
}

View File

@ -0,0 +1,16 @@
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="../../common.props" />
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\InterfaceForward.Domain.Shared\InterfaceForward.Domain.Shared.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Fake.Core" Version="8.0.0-preview.3" />
</ItemGroup>
</Project>

View File

@ -0,0 +1,10 @@

using Fake.Modularity;
namespace InterfaceForward.Application.Contracts
{
public class InterfaceForwardApplicationContractsModule:FakeModule
{
}
}

View File

@ -0,0 +1,13 @@
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="../../common.props"/>
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Fake.Core" Version="8.0.0-preview.3"/>
<PackageReference Include="Newtonsoft.Json" Version="13.0.2"/>
<PackageReference Include="Serilog" Version="3.1.1"/>
</ItemGroup>
</Project>

View File

@ -0,0 +1,8 @@
using Fake.Modularity;
namespace InterfaceForward.Domain.Shared
{
public class InterfaceForwardDomainSharedModule:FakeModule
{
}
}