forked from liaohan918/AutoTicket
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAutoTicket.csproj
41 lines (35 loc) · 1.28 KB
/
AutoTicket.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
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net5.0-windows</TargetFramework>
<UseWindowsForms>true</UseWindowsForms>
<ApplicationIcon />
<StartupObject />
</PropertyGroup>
<ItemGroup>
<Compile Remove="bin\Debug\net5.0-windows\script\**" />
<EmbeddedResource Remove="bin\Debug\net5.0-windows\script\**" />
<None Remove="bin\Debug\net5.0-windows\script\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.NodeServices" Version="3.1.22" />
<PackageReference Include="Microsoft.Extensions.Configuration" Version="6.0.0" />
</ItemGroup>
<ItemGroup>
<None Update="Appsetting.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="readme.tt">
<Generator>TextTemplatingFileGenerator</Generator>
</None>
</ItemGroup>
<ItemGroup>
<None Include="bin\Debug\net5.0-windows\scripts\damaisign.js">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Include="bin\Debug\net5.0-windows\scripts\damaitoken.js">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Include="bin\Debug\net5.0-windows\scripts\damaium.js" />
</ItemGroup>
</Project>