2024-09-05 14:26:31 +08:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Update="Template\Controller.tt">
|
|
|
|
|
<Generator>TextTemplatingFileGenerator</Generator>
|
|
|
|
|
<LastGenOutput>Controller.cs</LastGenOutput>
|
|
|
|
|
</None>
|
|
|
|
|
<None Update="Template\IService.tt">
|
|
|
|
|
<Generator>TextTemplatingFileGenerator</Generator>
|
|
|
|
|
<LastGenOutput>IService.cs</LastGenOutput>
|
|
|
|
|
</None>
|
|
|
|
|
<None Update="Template\Service.tt">
|
|
|
|
|
<Generator>TextTemplatingFileGenerator</Generator>
|
|
|
|
|
<LastGenOutput>Service.cs</LastGenOutput>
|
|
|
|
|
</None>
|
|
|
|
|
<None Update="ServerTemplate\Controller.tt">
|
|
|
|
|
<Generator>TextTemplatingFileGenerator</Generator>
|
|
|
|
|
<LastGenOutput>Controller.cs</LastGenOutput>
|
|
|
|
|
</None>
|
|
|
|
|
<None Update="ServerTemplate\IService.tt">
|
2024-09-12 14:28:35 +08:00
|
|
|
|
<Generator>TextTemplatingFileGenerator</Generator>
|
|
|
|
|
<LastGenOutput>IService.cs</LastGenOutput>
|
2024-09-05 14:26:31 +08:00
|
|
|
|
</None>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\Bunny.WebApi\Bunny.WebApi.csproj"/>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|