-
Set
Deterministic
tofalse
in.csproj
file:<Deterministic>false</Deterministic>
-
Change versioning in
AssemblyInfo.cs
to this:[assembly: AssemblyVersion("1.0.*")]
/** | |
* @constructor | |
* @extends {ol.interaction.Pointer} | |
*/ | |
ol.interaction.Drag = function() { | |
ol.interaction.Pointer.call(this, { | |
handleDownEvent: ol.interaction.Drag.prototype.handleDownEvent, | |
handleDragEvent: ol.interaction.Drag.prototype.handleDragEvent, | |
handleMoveEvent: ol.interaction.Drag.prototype.handleMoveEvent, |
<?php | |
if(!function_exists('dd')){ | |
function dd(){ | |
$call=( debug_backtrace (DEBUG_BACKTRACE_IGNORE_ARGS)[0]); | |
echo "<pre>\n### {$call['file']}:{$call['line']} ###\n"; | |
call_user_func_array("var_dump",func_get_args()) ;die; | |
} | |
} |
[ | |
{ | |
"id": 1, | |
"type": "Dolati", | |
"title": "دانشگاه تهران", | |
"city": "تهران", | |
"website": "http://ut.ac.ir/" | |
}, | |
{ | |
"id": 2, |
{ | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "Launch via NPM", | |
"type": "node", | |
"request": "launch", | |
"cwd": "${workspaceRoot}/src", | |
"runtimeExecutable": "npm", | |
"runtimeArgs": [ |
using System; | |
using System.Collections.Generic; | |
using System.Configuration; | |
using System.Data; | |
using System.Data.SqlClient; | |
using System.Linq; | |
namespace Toolkit.QueryExecuter | |
{ | |
public class SqlSrvQueryExecuter |
using Oracle.ManagedDataAccess.Client; | |
using System; | |
using System.Collections.Generic; | |
using System.Configuration; | |
using System.Data; | |
using System.Linq; | |
namespace Toolkit.QueryExecuter | |
{ |
AT&v | |
ACTIVE PROFILE: | |
B1 E1 L1 M1 N0 Q0 T V1 W0 X4 Y0 &C1 &D2 &G0 &J0 &K3 &Q5 &R1 &S0 &T5 &X0 &Y0 | |
S00:000 S01:000 S02:043 S03:013 S04:010 S05:008 S06:003 S07:050 S08:001 S09:006 | |
S10:014 S11:085 S12:050 S18:000 S25:005 S26:001 S36:007 S38:020 S46:138 S48:007 | |
S95:000 | |
STORED PROFILE 0: | |
B1 E1 L1 M1 N0 Q0 T V1 W0 X4 Y0 &C1 &D2 &G0 &J0 &K3 &Q5 &R1 &S0 &T5 &X0 | |
S00:000 S02:043 S06:003 S07:050 S08:001 S09:006 S10:014 S11:085 S12:050 S18:000 |
var m = Regex.Match(data, @"[*D](?<num>\d+)[C#]"); | |
if (m.Success) | |
{ | |
var num = m.Groups["num"].Value; | |
Log($"New Phone Detected: {num}"); | |
return; | |
} |
Set Deterministic
to false
in .csproj
file:
<Deterministic>false</Deterministic>
Change versioning in AssemblyInfo.cs
to this:
[assembly: AssemblyVersion("1.0.*")]
@echo off | |
del *.nupkg | |
set API_KEY= <---API-KEY---> | |
set PRJ_FILE= <---Project-Name--->.csproj | |
REM nuget pack -Build "%PRJ_FILE%" -Symbols -IncludeReferencedProjects -properties Configuration=Release -Properties NoWarn=NU5128 | |
nuget pack -Build "%PRJ_FILE%" -IncludeReferencedProjects -properties Configuration=Release -Properties NoWarn=NU5128 | |
Nuget push *.nupkg -Source https://www.nuget.org/api/v2/package %API_KEY% |