框架重构
清除多余的业务
This commit is contained in:
14
WebFirst/wwwroot/template/Lib2.txt
Normal file
14
WebFirst/wwwroot/template/Lib2.txt
Normal file
@@ -0,0 +1,14 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net5.0</TargetFramework>
|
||||
<RootNamespace>@Model.name</RootNamespace>
|
||||
<AssemblyName>@Model.name</AssemblyName>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
@foreach(var item in Model.nuget)
|
||||
{
|
||||
<PackageReference Include="@item.name" Version="@item.version" />
|
||||
}
|
||||
</ItemGroup>
|
||||
@Raw(Model.reference)
|
||||
</Project>
|
||||
Reference in New Issue
Block a user