This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- | |
============================================================================================================================================ | |
D:\Projects\App-Workspace\Csharp\minimalref\minimalref.csproj | |
============================================================================================================================================ | |
--> | |
<Project DefaultTargets="Build"> | |
<!-- | |
============================================================================================================================================ | |
<Import Project="Sdk.props" Sdk="Microsoft.NET.Sdk.Web"> | |
This import was added implicitly because the Project element's Sdk attribute specified "Microsoft.NET.Sdk.Web". |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Build started 11/28/2024 8:37:43. | |
Logging verbosity is set to: Normal. 1>Project "D:\Projects\App-Workspace\Csharp\minimalref\minimalref.csproj" on node 1 (build target(s)). | |
1>ResolveStaticWebAssetsConfiguration: | |
Creating directory "obj\Debug\net8.0\staticwebassets\". | |
GenerateTargetFrameworkMonikerAttribute: | |
Skipping target "GenerateTargetFrameworkMonikerAttribute" because all output files are up-to-date with respect to the input files. | |
CoreGenerateAssemblyInfo: | |
Skipping target "CoreGenerateAssemblyInfo" because all output files are up-to-date with respect to the input files. | |
_DiscoverMvcApplicationParts: | |
Could not infer the type of parameter "#1" because the attribute type is unknown. The value will be treated as a string. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using Microsoft.EntityFrameworkCore.Migrations; | |
#nullable disable | |
namespace streak.Migrations | |
{ | |
/// <inheritdoc /> | |
public partial class CreatingIdentityTables : Migration | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// This file is to executed in a Nodejs environment. | |
// `node constructor_check.js` | |
'use strict'; | |
// You'll need to install the 'esprima', 'estraverse' and 'lodash' modules via npm. | |
var esprima = require('esprima'); | |
var estraverse = require('estraverse'); | |
var fs = require('fs'); | |
var path = require('path'); | |
var _ = require('lodash'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def recursvfind (search, target, start=0, pos=[]): | |
current_pos = str(target).find(search, start) | |
if current_pos < 0: | |
return pos | |
else: | |
return recursvfind(search, target, current_pos + 1, pos + [current_pos]) |