2024-06-03
This commit is contained in:
119
_-Review/framework.md
Normal file
119
_-Review/framework.md
Normal file
@ -0,0 +1,119 @@
|
||||
---
|
||||
type: "topic"
|
||||
created: "2024-01-06T01:25:36.076Z"
|
||||
updated: "2024-01-06T01:25:36.076Z"
|
||||
---
|
||||
|
||||
# Framework
|
||||
|
||||
```bash
|
||||
"C:/Program Files (x86)/Microsoft Visual Studio/2022/BuildTools/MSBuild/Current/Bin/MSBuild.exe" /target:Restore /DetailedSummary /ConsoleLoggerParameters:PerformanceSummary;ErrorsOnly; /p:Configuration=Release;TargetFrameworkVersion=v4.8 /p:RestoreSources=D:/nupkg Fab2ApprovalSystem.csproj
|
||||
```
|
||||
|
||||
```bash
|
||||
"C:/Program Files (x86)/Microsoft Visual Studio/2022/BuildTools/MSBuild/Current/Bin/MSBuild.exe" /target:Build /DetailedSummary /ConsoleLoggerParameters:PerformanceSummary;ErrorsOnly; /p:Configuration=Release;TargetFrameworkVersion=v4.8 Fab2ApprovalSystem.csproj
|
||||
```
|
||||
|
||||
https://www.puppet.com/
|
||||
https://github.com/ChristopherHX/runner.server
|
||||
https://developercommunity.visualstudio.com/t/ability-to-test-yaml-builds-locally/366517
|
||||
https://github.com/microsoft/azure-pipelines-agent
|
||||
https://pypyr.io/docs/getting-started/
|
||||
|
||||
|
||||
FormCollection
|
||||
System.Web.Mvc.FormCollection
|
||||
HttpPostedFileBase
|
||||
IFormFile
|
||||
IExcelDataReader
|
||||
using System.Web.Security;
|
||||
using System.DirectoryServices.AccountManagement;
|
||||
using System.Web.Hosting;
|
||||
using System.Data.Linq;
|
||||
: System.Web.HttpApplication
|
||||
using Excel;
|
||||
using System.Web.Services;
|
||||
using System.Web.Script.Serialization;
|
||||
IExcelDataReader
|
||||
|
||||
<Project Sdk="Microsoft.NET.Sdk.Web">
|
||||
<PropertyGroup Label="Globals">
|
||||
<SccProjectName>SAK</SccProjectName>
|
||||
<SccProvider>SAK</SccProvider>
|
||||
<SccAuxPath>SAK</SccAuxPath>
|
||||
<SccLocalPath>SAK</SccLocalPath>
|
||||
<UserSecretsId>2ba43604-da25-4968-85d5-ea7afcfc2ddb</UserSecretsId>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<IsPackable>false</IsPackable>
|
||||
<Nullable>enable</Nullable>
|
||||
<OutputType>Exe</OutputType>
|
||||
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<IsWindows Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::Windows)))' == 'true'">true</IsWindows>
|
||||
<IsOSX Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::OSX)))' == 'true'">true</IsOSX>
|
||||
<IsLinux Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::Linux)))' == 'true'">true</IsLinux>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(IsWindows)'=='true'">
|
||||
<DefineConstants>Windows</DefineConstants>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(IsOSX)'=='true'">
|
||||
<DefineConstants>OSX</DefineConstants>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(IsLinux)'=='true'">
|
||||
<DefineConstants>Linux</DefineConstants>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Antlr" Version="3.5.0.2" />
|
||||
<PackageReference Include="bootstrap" Version="5.3.1" />
|
||||
<PackageReference Include="Dapper" Version="2.0.151" />
|
||||
<PackageReference Include="DocumentFormat.OpenXml" Version="2.20.0" />
|
||||
<PackageReference Include="EntityFramework" Version="6.4.4" />
|
||||
<PackageReference Include="ExcelDataReader" Version="3.6.0" />
|
||||
<PackageReference Include="iTextSharp" Version="5.5.13.3" />
|
||||
<PackageReference Include="jQuery" Version="3.7.1" />
|
||||
<PackageReference Include="System.DirectoryServices" Version="7.0.1" />
|
||||
<PackageReference Include="jQuery.Validation" Version="1.19.5" />
|
||||
<PackageReference Include="Microsoft.AspNet.Identity.Core" Version="2.2.4" />
|
||||
<PackageReference Include="Microsoft.AspNet.Identity.EntityFramework" Version="2.2.4" />
|
||||
<PackageReference Include="Microsoft.AspNet.Identity.Owin" Version="2.2.4" />
|
||||
<PackageReference Include="Microsoft.AspNet.Mvc" Version="5.2.9" />
|
||||
<PackageReference Include="Microsoft.AspNet.Razor" Version="3.2.9" />
|
||||
<PackageReference Include="Microsoft.AspNet.Web.Optimization" Version="1.1.3" />
|
||||
<PackageReference Include="Microsoft.AspNet.WebApi" Version="5.2.9" />
|
||||
<PackageReference Include="Microsoft.AspNet.WebApi.Client" Version="5.2.9" />
|
||||
<PackageReference Include="Microsoft.AspNet.WebApi.Core" Version="5.2.9" />
|
||||
<PackageReference Include="Microsoft.AspNet.WebApi.WebHost" Version="5.2.9" />
|
||||
<PackageReference Include="Microsoft.AspNet.WebPages" Version="3.2.9" />
|
||||
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
|
||||
<PackageReference Include="Microsoft.jQuery.Unobtrusive.Validation" Version="4.0.0" />
|
||||
<PackageReference Include="Microsoft.Owin" Version="4.2.2" />
|
||||
<PackageReference Include="Microsoft.Owin.Host.SystemWeb" Version="4.2.2" />
|
||||
<PackageReference Include="Microsoft.Owin.Security" Version="4.2.2" />
|
||||
<PackageReference Include="Microsoft.Owin.Security.Cookies" Version="4.2.2" />
|
||||
<PackageReference Include="Microsoft.Owin.Security.Facebook" Version="4.2.2" />
|
||||
<PackageReference Include="Microsoft.Owin.Security.Google" Version="4.2.2" />
|
||||
<PackageReference Include="Microsoft.Owin.Security.MicrosoftAccount" Version="4.2.2" />
|
||||
<PackageReference Include="Microsoft.Owin.Security.OAuth" Version="4.2.2" />
|
||||
<PackageReference Include="Microsoft.Owin.Security.Twitter" Version="4.2.2" />
|
||||
<PackageReference Include="Microsoft.Web.Infrastructure" Version="2.0.1" />
|
||||
<PackageReference Include="Modernizr" Version="2.8.3" />
|
||||
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
||||
<PackageReference Include="Owin" Version="1.0.0" />
|
||||
<PackageReference Include="Respond" Version="1.4.2" />
|
||||
<PackageReference Include="SharpZipLib" Version="1.4.2" />
|
||||
<PackageReference Include="System.Linq" Version="4.3.0" />
|
||||
<PackageReference Include="WebGrease" Version="1.6.0" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="Kendo.Mvc">
|
||||
<HintPath>..\Kendo\Mvc5\Kendo.Mvc.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="SSRSHelper">
|
||||
<HintPath>..\references\SSRSHelper.dll</HintPath>
|
||||
</Reference>
|
||||
</ItemGroup>
|
||||
</Project>
|
Reference in New Issue
Block a user