Last active
July 2, 2018 07:52
-
-
Save thuru-zz/15ec3a2a7021b8961f27b84b255c70ca to your computer and use it in GitHub Desktop.
layered project DV
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Project Sdk="Microsoft.NET.Sdk.Web"> | |
<PropertyGroup> | |
<TargetFramework>net471</TargetFramework> | |
</PropertyGroup> | |
<ItemGroup> | |
<Folder Include="wwwroot\" /> | |
</ItemGroup> | |
<ItemGroup> | |
.... | |
<PackageReference Include="Microsoft.DependencyValidation.Analyzers" Version="0.9.0" /> | |
<AdditionalFiles Include="..\DependencyValidation\DependencyValidation.layerdiagram"> | |
<Link>DependencyValidation.layerdiagram</Link> | |
<Visible>True</Visible> | |
</AdditionalFiles> | |
</ItemGroup> | |
<ItemGroup> | |
<ProjectReference Include="..\LayeredProject.DataContext\LayeredProject.DataContext.csproj" /> | |
<ProjectReference Include="..\LayeredProject.Services\LayeredProject.Services.csproj" /> | |
</ItemGroup> | |
</Project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment