forked from dotnetcore/SmartCode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSmartCode.CLI.csproj
More file actions
60 lines (54 loc) · 2.61 KB
/
Copy pathSmartCode.CLI.csproj
File metadata and controls
60 lines (54 loc) · 2.61 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.2</TargetFramework>
<PreserveCompilationContext>true</PreserveCompilationContext>
<PackAsTool>true</PackAsTool>
<ToolCommandName>SmartCode</ToolCommandName>
<PackageOutputPath>./nupkg</PackageOutputPath>
<Title>SmartCode.CLI</Title>
<Authors>Ahoo Wang</Authors>
<PackageReleaseNotes>
</PackageReleaseNotes>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="2.6.0" />
<PackageReference Include="Microsoft.Extensions.Configuration" Version="2.2.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.FileExtensions" Version="2.2.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="2.2.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="2.2.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\SmartCode.ETL.LoadToES\SmartCode.ETL.LoadToES.csproj" />
<ProjectReference Include="..\SmartCode.ETL.SQLite\SmartCode.ETL.SQLite.csproj" />
<ProjectReference Include="..\SmartCode.App\SmartCode.App.csproj" />
<ProjectReference Include="..\SmartCode.Db\SmartCode.Db.csproj" />
<ProjectReference Include="..\SmartCode.ETL.PostgreSql\SmartCode.ETL.PostgreSql.csproj" />
<ProjectReference Include="..\SmartCode.ETL\SmartCode.ETL.csproj" />
<ProjectReference Include="..\SmartCode.Generator\SmartCode.Generator.csproj" />
<ProjectReference Include="..\SmartCode\SmartCode.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="appsettings.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="..\..\doc\SmartCode-ETL-ES.yml" Link="SmartCode-ETL-ES.yml" />
<None Include="..\..\doc\smartcode-etl.db" Link="smartcode-etl.db">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Include="..\..\doc\SmartCode-ETL.yml" Link="SmartCode-ETL.yml">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="..\..\doc\SmartCode-Spring-Boot.yml" Link="SmartCode-Spring-Boot.yml" />
<None Include="..\..\doc\SmartCode.yml" Link="SmartCode.yml">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<Content Include="..\..\doc\SmartCode.json" Link="SmartCode.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<Folder Include="nupkg\" />
<Folder Include="Properties\" />
</ItemGroup>
</Project>