-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCodeGenerator.csproj
More file actions
74 lines (63 loc) · 2.57 KB
/
CodeGenerator.csproj
File metadata and controls
74 lines (63 loc) · 2.57 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Code\**" />
<EmbeddedResource Remove="Code\**" />
<None Remove="Code\**" />
</ItemGroup>
<ItemGroup>
<Compile Remove="CrudTemplate\WipAddModel.cs" />
<Compile Remove="CrudTemplate\WipAuditService.cs" />
<Compile Remove="CrudTemplate\WipController.cs" />
<Compile Remove="CrudTemplate\WipEditModel.cs" />
<Compile Remove="CrudTemplate\WipModel.cs" />
<Compile Remove="CrudTemplate\WipPermissionService.cs" />
<Compile Remove="CrudTemplate\WipRepository.cs" />
<Compile Remove="CrudTemplate\WipSearchCriteria.cs" />
<Compile Remove="CrudTemplate\WipService.cs" />
<Compile Remove="CrudTemplate\WipView.cs" />
</ItemGroup>
<ItemGroup>
<None Include="CrudTemplate\WipEditModel.cs" />
<None Include="CrudTemplate\WipAddModel.cs" />
<None Include="CrudTemplate\WipPermissionService.cs" />
<None Include="CrudTemplate\WipController.cs" />
<None Include="CrudTemplate\WipModel.cs" />
<None Include="CrudTemplate\WipRepository.cs" />
<None Include="CrudTemplate\WipSearchCriteria.cs" />
<None Include="CrudTemplate\WipAuditService.cs" />
<None Include="CrudTemplate\WipService.cs" />
<None Include="CrudTemplate\WipView.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="AsyncFixer" Version="1.1.6">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="3.6.0" />
<PackageReference Include="SecurityCodeScan" Version="3.5.3">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\Backend\Api\All\LogR.App.Api.csproj" />
<ProjectReference Include="..\..\..\Backend\Shared\Common\LogR.Common.csproj" />
</ItemGroup>
<ItemGroup>
<Folder Include="Properties\" />
</ItemGroup>
<PropertyGroup>
<CodeAnalysisRuleSet>..\..\..\Backend\Op.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<PropertyGroup>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<WarningsAsErrors />
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DebugType>Full</DebugType>
</PropertyGroup>
</Project>