-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPortfolio.csproj
58 lines (55 loc) · 1.73 KB
/
Portfolio.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
46
47
48
49
50
51
52
53
54
55
56
57
58
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<StartupObject>Portfolio.Program</StartupObject>
</PropertyGroup>
<ItemGroup>
<AssemblyAttribute Include="AssemblyInfo">
<_Parameter1>$([System.DateTime]::UtcNow.ToString("yyyy.M.d.h"))</_Parameter1>
</AssemblyAttribute>
</ItemGroup>
<ItemGroup>
<Folder Remove="Static\" />
<Folder Remove="PublicTemplates\" />
<Folder Remove="PrivateTemplates\" />
<Folder Include="Data\" />
</ItemGroup>
<ItemGroup>
<None Include="configs/**">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<None Include="PublicTemplates/**">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<None Include="PrivateTemplates/**">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<Compile Remove="Portfolio\Data\**" />
<Compile Remove="PrivateTemplates\**" />
<Compile Remove="PublicTemplates\**" />
<Compile Remove="Static\**" />
<EmbeddedResource Remove="Portfolio\Data\**" />
<None Remove="Portfolio\Data\**" />
</ItemGroup>
<ItemGroup>
<None Update="Data\PortfolioDatabase.db3">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Data\TTADemo.db3">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Markdig.Signed" Version="0.37.0" />
<PackageReference Include="System.Data.SQLite.Core" Version="1.0.118" />
</ItemGroup>
</Project>