-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
37 changed files
with
223 additions
and
139 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<Sdk Name="Microsoft.Build.CentralPackageVersions" /> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>net40;netstandard1.0</TargetFrameworks> | ||
<AssemblyName>Obviously.SemanticTypes.Attributes</AssemblyName> | ||
<PackageId>Obviously.SemanticTypes.Attributes</PackageId> | ||
<RootNamespace>Obviously.SemanticTypes</RootNamespace> | ||
<Description>Defines `SemanticType` attribute. See project site for more details.</Description> | ||
<IsNuGetPackage>true</IsNuGetPackage> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="CodeGeneration.Roslyn.Attributes" /> | ||
</ItemGroup> | ||
|
||
</Project> |
This file contains 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 contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
<Project> | ||
<PropertyGroup Label="Project"> | ||
<LangVersion>8.0</LangVersion> | ||
<Nullable>enable</Nullable> | ||
<MSBuildWarningsAsMessages>$(MSBuildWarningsAsMessages);NU5105</MSBuildWarningsAsMessages> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup> | ||
<IsTestProject Condition="'$(IsTestProject)' == ''">false</IsTestProject> | ||
<IsTestProject Condition="$(MSBuildProjectName.EndsWith('Tests'))">true</IsTestProject> | ||
</PropertyGroup> | ||
|
||
<ItemGroup Label="Testing" Condition="'$(IsTestProject)' == 'true'"> | ||
<PackageReference Include="FluentAssertions" /> | ||
<PackageReference Include="Microsoft.NET.Test.Sdk" /> | ||
<PackageReference Include="Newtonsoft.Json" /> | ||
<PackageReference Include="xunit.core" /> | ||
<PackageReference Include="xunit.analyzers" /> | ||
<PackageReference Include="xunit.runner.visualstudio"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="coverlet.collector"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
</ItemGroup> | ||
|
||
</Project> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<Project> | ||
|
||
<PropertyGroup Label="NuGet Packages" Condition="'$(IsNuGetPackage)' == 'true'"> | ||
<Version>0.0.1-preview.7</Version> | ||
<GeneratePackageOnBuild>false</GeneratePackageOnBuild> | ||
<Authors>Manuel Pfemeter</Authors> | ||
<RepositoryUrl>https://github.com/manne/obviously</RepositoryUrl> | ||
<RepositoryType>git</RepositoryType> | ||
<PackageLicenseExpression>MIT</PackageLicenseExpression> | ||
<MinClientVersion>4.3.0</MinClientVersion> | ||
<IsPackable>true</IsPackable> | ||
<Company /> | ||
</PropertyGroup> | ||
|
||
</Project> |
This file contains 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
24 changes: 3 additions & 21 deletions
24
...tictypes/Generator.Templates.AspNetCore.Tests/Generator.Templates.AspNetCore.Tests.csproj
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,17 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<Sdk Name="Microsoft.Build.CentralPackageVersions" /> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>netcoreapp3.1</TargetFramework> | ||
|
||
<IsPackable>false</IsPackable> | ||
<AssemblyName>Obviously.SemanticTypes.Generator.Templates.AspNetCore.Tests</AssemblyName> | ||
<RootNamespace>Obviously.SemanticTypes.Generator.Templates.AspNetCore.Tests</RootNamespace> | ||
<Nullable>enable</Nullable> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<None Include="..\.editorconfig" Link=".editorconfig" /> | ||
<PackageReference Include="FluentAssertions" Version="5.10.3" /> | ||
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="3.1.3" /> | ||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.5.0" /> | ||
<PackageReference Include="xunit.core" Version="2.4.1" /> | ||
<PackageReference Include="xunit.analyzers" Version="0.10.0" /> | ||
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.1"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="coverlet.collector" Version="1.2.1"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" /> | ||
<ProjectReference Include="..\Generator.Templates.AspNetCore\Generator.Templates.AspNetCore.csproj" /> | ||
<ProjectReference Include="..\Generator\Generator.csproj" OutputItemType="CodeGenerationRoslynPlugin" PrivateAssets="all" /> | ||
<PackageReference Include="CodeGeneration.Roslyn.Tool" Version="0.7.63"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets> | ||
</PackageReference> | ||
</ItemGroup> | ||
|
||
</Project> |
This file contains 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 contains 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 contains 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 was deleted.
Oops, something went wrong.
File renamed without changes.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<Sdk Name="CodeGeneration.Roslyn.Plugin.Sdk" /> | ||
<Sdk Name="Microsoft.Build.CentralPackageVersions" /> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>netcoreapp2.1</TargetFramework> | ||
<AssemblyName>Obviously.SemanticTypes.Generator</AssemblyName> | ||
<RootNamespace>Obviously.SemanticTypes.Generator</RootNamespace> | ||
<PackageId>Obviously.SemanticTypes.Generator</PackageId> | ||
<Description>A code generator for semantic types.</Description> | ||
<PackageTags>codegenerator semantic-types</PackageTags> | ||
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup> | ||
<IsNuGetPackage>true</IsNuGetPackage> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<None Include="..\..\..\LICENSE" Pack="true" PackagePath="" /> | ||
<Compile Include="../Attributes/*.cs" Link="Attributes/%(RecursiveDir)%(Filename)%(Extension)" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup Label="Nested Partial Files"> | ||
<Compile Update="SemanticTypeGenerator.*.cs"> | ||
<DependentUpon>SemanticTypeGenerator.cs</DependentUpon> | ||
</Compile> | ||
<Compile Update="Modules\AspNetCoreModelBinding.*.cs"> | ||
<DependentUpon>Modules\AspNetCoreModelBinding.cs</DependentUpon> | ||
</Compile> | ||
</ItemGroup> | ||
|
||
</Project> |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<Sdk Name="CodeGeneration.Roslyn.PluginMetapackage.Sdk" /> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>netstandard1.0</TargetFramework> | ||
<IsNuGetPackage>true</IsNuGetPackage> | ||
<PackageId>Obviously.SemanticTypes</PackageId> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\Attributes\Attributes.csproj" /> | ||
<NupkgAdditionalDependency Include="Obviously.SemanticTypes.Generators" IncludeAssets="all" /> | ||
</ItemGroup> | ||
|
||
</Project> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
|
||
<ItemGroup> | ||
<PackageReference Update="CodeGeneration.Roslyn" Version="0.7.63" /> | ||
<PackageReference Update="CodeGeneration.Roslyn.Attributes" Version="0.7.63" /> | ||
<PackageReference Update="CodeGeneration.Roslyn.Tool" Version="0.7.63" PrivateAssets="all" /> | ||
<PackageReference Update="Microsoft.CodeAnalysis.CSharp" Version="[3.4.0]" /> | ||
<PackageReference Update="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="[3.4.0]" /> | ||
<PackageReference Update="System.Collections.Immutable" Version="1.7.0" /> | ||
<PackageReference Update="Microsoft.CodeAnalysis.Analyzers" Version="3.0.0" /> | ||
<PackageReference Update="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="2.9.8" /> | ||
<PackageReference Update="FluentAssertions" Version="5.10.3" /> | ||
<PackageReference Update="Microsoft.AspNetCore.Mvc.Testing" Version="3.1.3" /> | ||
<PackageReference Update="Microsoft.NET.Test.Sdk" Version="16.5.0" /> | ||
<PackageReference Update="xunit.core" Version="2.4.1" /> | ||
<PackageReference Update="xunit.analyzers" Version="0.10.0" /> | ||
<PackageReference Update="xunit.runner.visualstudio" Version="2.4.1" /> | ||
<PackageReference Update="coverlet.collector" Version="1.2.1" /> | ||
<PackageReference Update="Newtonsoft.Json" Version="12.0.3" /> | ||
<PackageReference Update="Namotion.Reflection" Version="1.0.8" /> | ||
<PackageReference Update="Microsoft.AspNetCore.Mvc.Testing" Version="3.1.3" /> | ||
</ItemGroup> | ||
|
||
</Project> |
This file contains 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
Oops, something went wrong.