-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathgbXMLValidatorWeb.csproj
More file actions
51 lines (47 loc) · 2.1 KB
/
gbXMLValidatorWeb.csproj
File metadata and controls
51 lines (47 loc) · 2.1 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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<UserSecretsId>aspnet-Asharea_viewer-FBE42840-E437-44C3-8F7D-1A10B4D799A8</UserSecretsId>
</PropertyGroup>
<ItemGroup>
<None Update="app.db" CopyToOutputDirectory="PreserveNewest" ExcludeFromSingleFile="true" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="DOEgbXML" Version="2.3.0" />
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="3.1.9" />
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="3.1.9" />
<PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="3.1.9" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="3.1.9" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="3.1.9"><IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
<PackageReference Include="HtmlAgilityPack" Version="1.11.26" />
</ItemGroup>
<ItemGroup>
<Folder Include="wwwroot\imgs\" />
<Folder Include="Pages\auth\" />
<Folder Include="Pages\dashboard\" />
<Folder Include="wwwroot\imgs\icons\" />
<Folder Include="Pages\view\" />
<Folder Include="wwwroot\json\" />
<Folder Include="wwwroot\imgs\test_case\" />
<Folder Include="Data\model\" />
<Folder Include="Data\controller\" />
<Folder Include="wwwroot\lib\old_spider_lib\" />
<Folder Include="wwwroot\assets\xsd\" />
</ItemGroup>
<ItemGroup>
<Content Remove="Pages\_ViewImports.cshtml" />
<Content Remove="wwwroot\assets\js\forms_file-upload.js" />
<Content Remove="wwwroot\tests\test11.gbxml" />
</ItemGroup>
<ItemGroup>
<Reference Include="VectorMath">
<HintPath>..\..\gbxml_validator\packages\VectorMath.dll</HintPath>
</Reference>
<Reference Include="VectorMath">
<HintPath>packages\VectorMath.dll</HintPath>
</Reference>
</ItemGroup>
</Project>