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 UnityEngine; | |
| public class NewMonoBehaviourScript : MonoBehaviour | |
| { | |
| class InternalClass | |
| { | |
| private static SandboxLogger _internalLogger = SandboxLogger.CreateLogger<InternalClass>(); | |
| public void Hello(GameObject obj) |
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 Newtonsoft.Json; | |
| using System; | |
| using System.IO; | |
| using System.Threading.Tasks; | |
| namespace Kokeiro | |
| { | |
| public static class Util | |
| { | |
| private static readonly string CacheDirectoryName = "Cache"; |
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
| <StyleCopSettings Version="105"> | |
| <Analyzers> | |
| <Analyzer AnalyzerId="StyleCop.CSharp.NamingRules"> | |
| <AnalyzerSettings> | |
| <CollectionProperty Name="Hungarian"> | |
| <Value>to</Value> | |
| <Value>my</Value> | |
| </CollectionProperty> | |
| </AnalyzerSettings> | |
| </Analyzer> |
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
| <?xml version="1.0" encoding="utf-8"?> | |
| <Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |
| <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" /> | |
| <PropertyGroup> | |
| <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | |
| <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | |
| <ProjectGuid>{84F6E212-CE4E-4322-8A1B-2F4CF0EA39BD}</ProjectGuid> | |
| <OutputType>Exe</OutputType> | |
| <AppDesignerFolder>Properties</AppDesignerFolder> | |
| <RootNamespace>DasaPocket</RootNamespace> |
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
| <Project Sdk="Microsoft.NET.Sdk"> | |
| <PropertyGroup> | |
| <OutputType>Exe</OutputType> | |
| <TargetFramework>netcoreapp1.1</TargetFramework> | |
| </PropertyGroup> | |
| <ItemGroup> | |
| <Compile Remove="voice\**" /> | |
| <EmbeddedResource Remove="voice\**" /> |
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
| public static class GitHubContributionsReader | |
| { | |
| static readonly string HostUrl = @"https://github.com/"; | |
| static readonly HttpClient httpClient = new HttpClient(); | |
| public static async Task<IEnumerable<ContributionItem>> GetContributionsAsync(string username) | |
| { | |
| var url = HostUrl + username; | |
| var html = await httpClient.GetStringAsync(url);; |
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
| <Project Sdk="Microsoft.NET.Sdk"> | |
| <PropertyGroup> | |
| <OutputType>Exe</OutputType> | |
| <TargetFramework>netcoreapp2.0</TargetFramework> | |
| </PropertyGroup> | |
| <ItemGroup> | |
| <PackageReference Include="Google.Cloud.VideoIntelligence.V1Beta1" Version="1.0.0-alpha03" /> | |
| </ItemGroup> |
NewerOlder

