-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOproto.FluentDynamoDb.SourceGenerator.csproj
More file actions
35 lines (27 loc) · 1.28 KB
/
Oproto.FluentDynamoDb.SourceGenerator.csproj
File metadata and controls
35 lines (27 loc) · 1.28 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>12.0</LangVersion>
<IsRoslynComponent>true</IsRoslynComponent>
<IncludeBuildOutput>false</IncludeBuildOutput>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<IsPackable>false</IsPackable>
<DevelopmentDependency>true</DevelopmentDependency>
<EnforceExtendedAnalyzerRules>true</EnforceExtendedAnalyzerRules>
<!-- Analyzer-specific properties -->
<AnalyzerLanguage>cs</AnalyzerLanguage>
<RestoreProjectStyle>PackageReference</RestoreProjectStyle>
<!-- Ensure deterministic builds -->
<Deterministic>true</Deterministic>
<PathMap>$(MSBuildProjectDirectory)=.</PathMap>
</PropertyGroup>
<ItemGroup>
<InternalsVisibleTo Include="Oproto.FluentDynamoDb.SourceGenerator.UnitTests" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="3.11.0" PrivateAssets="all" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.5.0" PrivateAssets="all" />
</ItemGroup>
</Project>