добавление команд при сборке
This commit is contained in:
parent
373dd2a63b
commit
4fa51bef04
@ -1,4 +1,4 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net6.0</TargetFramework>
|
||||
@ -19,4 +19,8 @@
|
||||
<ProjectReference Include="..\BlacksmithWorkshopContracts\BlacksmithWorkshopContracts.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
|
||||
<Exec Command="copy /Y $(targetDir)*.dll $(solutionDir)ImplementationExtensions\*.dll" />
|
||||
</Target>
|
||||
|
||||
</Project>
|
||||
|
@ -10,4 +10,8 @@
|
||||
<ProjectReference Include="..\BlacksmithWorkshopContracts\BlacksmithWorkshopContracts.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
|
||||
<Exec Command="copy /Y $(targetDir)*.dll $(solutionDir)ImplementationExtensions\*.dll" />
|
||||
</Target>
|
||||
|
||||
</Project>
|
||||
|
@ -62,5 +62,6 @@ namespace BlacksmithWorkshopFileImplement.Models
|
||||
new XAttribute("SenderName", SenderName),
|
||||
new XAttribute("DateDelivery", DateDelivery)
|
||||
);
|
||||
public int Id => throw new NotImplementedException();
|
||||
}
|
||||
}
|
||||
|
@ -37,5 +37,6 @@ namespace BlacksmithWorkshopListImplement.Models
|
||||
SenderName = SenderName,
|
||||
DateDelivery = DateDelivery
|
||||
};
|
||||
public int Id => throw new NotImplementedException();
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user