-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCheckedExceptions.CodeFixes.csproj
More file actions
33 lines (27 loc) · 1.08 KB
/
Copy pathCheckedExceptions.CodeFixes.csproj
File metadata and controls
33 lines (27 loc) · 1.08 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>Latest</LangVersion>
<IsPackable>false</IsPackable>
<EnforceExtendedAnalyzerRules>true</EnforceExtendedAnalyzerRules>
<RootNamespace>Sundstrom.CheckedExceptions.CodeFixes</RootNamespace>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\CheckedExceptions\CheckedExceptions.csproj" />
</ItemGroup>
<ItemGroup>
<Compile Update="CodeFixResources.Designer.cs" DesignTime="True" AutoGen="True"
DependentUpon="CodeFixResources.resx" />
<EmbeddedResource Update="CodeFixResources.resx" Generator="ResXFileCodeGenerator"
LastGenOutput="CodeFixResources.Designer.cs" />
</ItemGroup>
<ItemGroup>
<AdditionalFiles Include="CodeFixReleases.Shipped.md" />
<AdditionalFiles Include="CodeFixReleases.Unshipped.md" />
</ItemGroup>
</Project>