-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathHackSystem.Web.ProgramSchedule.Abstractions.csproj
More file actions
49 lines (43 loc) · 1.66 KB
/
HackSystem.Web.ProgramSchedule.Abstractions.csproj
File metadata and controls
49 lines (43 loc) · 1.66 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Authors>CuteLeon</Authors>
<PackageIcon>LogoImageIcon.png</PackageIcon>
<PackageProjectUrl>https://github.com/CuteLeon/HackSystem/</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/CuteLeon/HackSystem/</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>HackSystem</PackageTags>
<NeutralLanguage>en</NeutralLanguage>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<Description>Program Schedule Abstractions component of Hack System.</Description>
<AssemblyVersion>1.0.0.5</AssemblyVersion>
<Version>$(AssemblyVersion)</Version>
</PropertyGroup>
<ItemGroup>
<None Include="..\..\LICENSE" Pack="true" PackagePath="" />
<None Include="..\HackSystem.Web\wwwroot\LogoImageIcon.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
<None Include="..\..\README.md">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Components" Version="6.0.25" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="6.0.7" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\HackSystem.Intermediary.Abstractions\HackSystem.Intermediary.Abstractions.csproj" />
</ItemGroup>
<ItemGroup>
<Using Include="System.Linq" />
<Using Include="Microsoft.AspNetCore.Components" />
<Using Include="Microsoft.Extensions.Logging" />
</ItemGroup>
</Project>