-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SIT.Controller.csproj
61 lines (56 loc) · 2.55 KB
/
SIT.Controller.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
59
60
61
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UserSecretsId>aspnet-SIT.Controller-f59b9e3b-643f-4715-96d4-67c6fe68686f</UserSecretsId>
<RuntimeIdentifiers>linux-x64;win10-x64</RuntimeIdentifiers>
<EnableSdkContainerDebugging>True</EnableSdkContainerDebugging>
<DockerDefaultTargetOS>Windows</DockerDefaultTargetOS>
<DockerfileContext>.</DockerfileContext>
<ContainerRuntimeIdentifier>win10-x64</ContainerRuntimeIdentifier>
<ContainerBaseImage>mcr.microsoft.com/dotnet/aspnet:7.0</ContainerBaseImage>
<SatelliteResourceLanguages>none</SatelliteResourceLanguages>
<StartupObject></StartupObject>
<ApplicationIcon>wwwroot\sit-icon.ico</ApplicationIcon>
<SignAssembly>False</SignAssembly>
<Company></Company>
<Copyright>
© Mihai, 2024. All rights reserved.
</Copyright>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/mihaicm93/SIT.Controlle</RepositoryUrl>
<PackageLicenseFile>Licence.txt</PackageLicenseFile>
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<Authors>Mihai</Authors>
<PackageProjectUrl>https://github.com/mihaicm93/SIT.Controlle</PackageProjectUrl>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Blazor.Bootstrap" Version="2.2.0" />
<PackageReference Include="Blazorise.DataGrid" Version="1.5.3" />
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="7.0.18" />
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="7.0.18" />
<PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="7.0.18" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="7.0.18" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="7.0.18" />
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="7.0.12" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="7.0.18" />
<PackageReference Include="RestSharp" Version="111.3.0" />
</ItemGroup>
<ItemGroup>
<ContainerEnvironmentVariable Include="ASPNETCORE_HTTPS_PORTS">
<Value>443</Value>
</ContainerEnvironmentVariable>
<ContainerPort Include="443" />
</ItemGroup>
<ItemGroup>
<None Update="Licence.txt">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Update="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>