-
Notifications
You must be signed in to change notification settings - Fork 1
/
Smart.Resolver.csproj
45 lines (37 loc) · 1.39 KB
/
Smart.Resolver.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
44
45
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net462</TargetFrameworks>
<LangVersion>latest</LangVersion>
<CodeAnalysisRuleSet>..\Smart.Resolver.ruleset</CodeAnalysisRuleSet>
<RootNamespace>Smart</RootNamespace>
<Version>1.7.2</Version>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Debug'">
<DebugType>full</DebugType>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
<DebugType>pdbonly</DebugType>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="2.6.0" />
<PackageReference Include="StyleCop.Analyzers" Version="1.0.2" />
<PackageReference Include="Usa.Smart.Core" Version="1.5.7" />
</ItemGroup>
<ItemGroup>
<Service Include="{508349b6-6b84-4df5-91f0-309beebad82d}" />
</ItemGroup>
<ItemGroup>
<Compile Update="Resolver\Providers\StandardProvider.Generate.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>StandardProvider.Generate.tt</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<None Update="Resolver\Providers\StandardProvider.Generate.tt">
<Generator>TextTemplatingFileGenerator</Generator>
<LastGenOutput>StandardProvider.Generate.cs</LastGenOutput>
</None>
</ItemGroup>
</Project>