-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathComputerAnalytics.csproj
48 lines (48 loc) · 1.78 KB
/
ComputerAnalytics.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<OutputType>Exe</OutputType>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
</PropertyGroup>
<ItemGroup>
<None Remove="api.txt" />
<None Remove="privacy.html" />
<None Remove="privacy.txt" />
</ItemGroup>
<ItemGroup>
<Reference Include="System.Text.Json, Version=4.0.1.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\ComputerUtils\ComputerUtils\ComputerUtils.csproj" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="analytics.js" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="analytics.html" />
<EmbeddedResource Include="api.txt" />
<EmbeddedResource Include="console.html" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="login.html" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="manage.html" />
<EmbeddedResource Include="privacy.html" />
<EmbeddedResource Include="privacy.txt" />
<EmbeddedResource Include="style.css" />
<EmbeddedResource Include="script.js" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
<PackageReference Include="MongoDB.Driver" Version="2.17.0" />
<PackageReference Include="System.Buffers" Version="4.5.1" />
<PackageReference Include="System.Data.DataSetExtensions" Version="4.5.0" />
<PackageReference Include="System.Memory" Version="4.5.5" />
<PackageReference Include="System.Numerics.Vectors" Version="4.5.0" />
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="6.0.0" />
</ItemGroup>
<ItemGroup>
<Resource Include="script.js" />
</ItemGroup>
</Project>