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
| /* | |
| Copyright Phil Haack | |
| Licensed under the MIT license - https://github.com/haacked/CodeHaacks/blob/main/LICENSE. | |
| */ | |
| using System; | |
| using System.Linq; | |
| using System.Linq.Expressions; | |
| using System.Reflection; | |
| using Microsoft.EntityFrameworkCore; | |
| using Microsoft.EntityFrameworkCore.Metadata.Builders; |
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
| //Kaynak kodun adresi | |
| String githubUrl = "https://github.com/ahmetkucukoglu/aspnetcore-ci-sample" | |
| //Kaynak kodun içerisindeki projenin ismi | |
| String projectName = "CISample/CISample.App" | |
| //Kaynak kodun publish edileceği dizin | |
| String publishedPath = "CISample\\CISample.App\\bin\\Release\\netcoreapp2.2\\publish" | |
| //Hedef makinesindeki IIS'de tanımlı olan sitenizin ismi |
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
| import 'package:flutter/material.dart'; | |
| void main() => runApp(TestApp()); | |
| class TestApp extends StatelessWidget { | |
| @override | |
| Widget build(BuildContext context) { | |
| return MaterialApp( | |
| theme: ThemeData( | |
| primaryColor: Colors.green[900], |
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 System.Collections.Generic; | |
| using System.Linq; | |
| using System.Web; | |
| using System.Web.Http.OData.Routing; | |
| namespace Project.WebService.Authorization | |
| { | |
| using System.Net.Http; | |
| using System.Threading; |