-
Notifications
You must be signed in to change notification settings - Fork 0
/
Mapalyzer.csproj
43 lines (39 loc) · 2 KB
/
Mapalyzer.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<AssemblyName>Mapalyzer</AssemblyName>
<RootNamespace>Mapalyzer</RootNamespace>
<LangVersion>9.0</LangVersion>
<PackageId>Mapalyzer</PackageId>
<Title>Mapalyzer</Title>
<PackageVersion>1.3.1-alpha</PackageVersion>
<Authors>Mojtaba Shojajou</Authors>
<Company>Shojajou</Company>
<Description>A boilerplate library built by the C# Analyzers for mapping the DotNET domain classes to the models of the application.</Description>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageTags>mapper boilerplate domain design object mvc automapper</PackageTags>
<RespositoryType>git</RespositoryType>
<RespositoryUrl>https://github.com/shojajou/mapalyzer</RespositoryUrl>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>false</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<NoPackageAnalysis>true</NoPackageAnalysis>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis" Version="3.10.0" />
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="3.3.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.CodeAnalysis.Common" Version="3.10.0" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="3.10.0" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="3.10.0" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
</ItemGroup>
<ItemGroup>
<None Update="tools\*.ps1" CopyToOutputDirectory="Always" Pack="true" PackagePath="tools" />
<None Include="$(OutputPath)\$(AssemblyName).dll" Pack="true" PackagePath="analyzers/dotnet/cs" Visible="false" />
</ItemGroup>
</Project>