initial commit
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
using System;
|
||||
|
||||
public static class CosturaUtility
|
||||
{
|
||||
public static void Initialize()
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
using System;
|
||||
using System.Reflection;
|
||||
|
||||
internal static class MethodTimeLogger
|
||||
{
|
||||
public static void Log(MethodBase methodBase, long milliseconds, string message)
|
||||
{
|
||||
Log(methodBase.DeclaringType ?? typeof(object), methodBase.Name, milliseconds, message);
|
||||
}
|
||||
|
||||
public static void Log(Type type, string methodName, long milliseconds, string message)
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System.Diagnostics;
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.Versioning;
|
||||
|
||||
[assembly: AssemblyCompany("Fody")]
|
||||
[assembly: AssemblyFileVersion("5.7.0")]
|
||||
[assembly: AssemblyInformationalVersion("5.7.0")]
|
||||
[assembly: AssemblyCopyright("Copyright © Fody 2015 - 2021")]
|
||||
[assembly: AssemblyTitle("Costura")]
|
||||
[assembly: AssemblyProduct("Costura")]
|
||||
[assembly: AssemblyDescription("Costura library")]
|
||||
[assembly: AssemblyVersion("5.7.0.0")]
|
||||
@@ -0,0 +1,19 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<PropertyGroup>
|
||||
<AssemblyName>Costura</AssemblyName>
|
||||
<GenerateAssemblyInfo>False</GenerateAssemblyInfo>
|
||||
<TargetFramework>netstandard1.0</TargetFramework>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<LangVersion>14.0</LangVersion>
|
||||
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
|
||||
<CheckForOverflowUnderflow>False</CheckForOverflowUnderflow>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup />
|
||||
<ItemGroup />
|
||||
<ItemGroup>
|
||||
<Reference Include="System.Reflection">
|
||||
<HintPath>../../../../../../../usr/local/share/dotnet/shared/Microsoft.NETCore.App/10.0.5/System.Reflection.dll</HintPath>
|
||||
</Reference>
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
Reference in New Issue
Block a user